/*
Theme Name: DockLab Child
Theme URI: https://docklab.gr
Description: Child theme for Hello Elementor — DockLab
Template: hello-elementor
Version: 4.0.0
*/

/* =================================================
   VARIABLES
================================================= */
:root {
  --navy:       #1a1f36;
  --navy-dark:  #141829;
  --navy-mid:   #232840;
  --body-bg:    #ffffff;
  --surface:    #f8f9fa;
  --border:     #e5e7eb;
  --border-mid: #d1d5db;
  --text:       #0f172a;
  --text-mid:   #374151;
  --text-muted: #6b7280;
  --font:       "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:     8px;
  --radius-lg:  12px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.1);
  --hdr-h:      62px;
}

/* =================================================
   RESET
================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { padding: 0; margin: 0; background: var(--body-bg); }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* Kill Elementor first-section gap */
.elementor-section:first-child,
.e-con:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Kill Hello Elementor max-width override */
.site-header:not(.dynamic-header),
.site-footer:not(.dynamic-footer) {
  max-width: 100% !important;
}

/* =================================================
   HEADER
================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  max-width: 100% !important;
  margin: 0 !important;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
}



.hdr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.hdr-wordmark {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  font-style: normal;
}

.hdr-wordmark em {
  color: rgba(255,255,255,.38);
  font-style: normal;
}

/* DESKTOP NAV */
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.hdr-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .2s var(--ease);
  position: relative;
  white-space: nowrap;
}

.hdr-nav a:hover,
.hdr-nav a.active { color: #fff; }

.hdr-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,.35);
}

/* CTA BUTTON */
.hdr-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  background: #fff;
  padding: 8px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}

.hdr-cta:hover {
  background: #e8ecff;
  transform: translateY(-1px);
}

/* HAMBURGER — hidden on desktop */
.hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.hdr-burger span {
  display: block;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
  transform-origin: center;
}

.hdr-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; }
.hdr-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- MOBILE ---- */
@media (max-width: 768px) {


  .hdr-inner { padding: 0 20px; }

  /* Hide desktop nav & CTA — shown in dropdown instead */
  .hdr-nav { display: none; }
  .hdr-cta { display: none; }
  .hdr-burger { display: flex; }

  /* Mobile dropdown nav */
  .hdr-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: var(--hdr-h);
    left: 0;
    width: 100%;
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 4px 20px 20px;
    z-index: 9997;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
  }

  body.admin-bar .hdr-nav.open { top: calc(var(--hdr-h) + 46px); }

  .hdr-nav.open a {
    display: block;
    padding: 14px 0;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    border-bottom: 1px solid rgba(255,255,255,.07);
    text-decoration: none;
  }

  .hdr-nav.open a:last-child { border-bottom: none; }

  /* Mobile CTA inside dropdown */
  .hdr-nav.open::after {
    content: 'Επικοινωνία';
    display: block;
    margin-top: 16px;
    padding: 11px 20px;
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
  }

}

/* =================================================
   FOOTER — full width, no gap
================================================= */
.site-footer {
  /* Bust out of any Elementor/Hello container */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--navy);
  border-top: none;
  /* Ensure it sits flush against whatever is above */
  display: block;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Kill Hello Elementor's own footer padding/max-width */
.site-footer .footer-inner { max-width: 100% !important; }
.page-header .entry-title,
.site-footer .footer-inner,
.site-footer:not(.dynamic-footer),
.site-header .header-inner,
.site-header:not(.dynamic-header),
body:not([class*=elementor-page-]) .site-main { max-width: 100% !important; }

.ftr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 40px;
}

.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.ftr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.ftr-wordmark {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  font-style: normal;
}

.ftr-wordmark em {
  color: rgba(255,255,255,.25);
  font-style: normal;
}

.ftr-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  line-height: 1.75;
  max-width: 280px;
}

.ftr-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  margin-bottom: 16px;
}

.ftr-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ftr-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}

.ftr-col ul li a:hover { color: rgba(255,255,255,.85); }

.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ftr-bottom p,
.ftr-bottom a {
  font-size: 12px;
  color: rgba(255,255,255,.2);
  text-decoration: none;
  transition: color .2s;
}

.ftr-bottom a:hover { color: rgba(255,255,255,.5); }

@media (max-width: 900px) {
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ftr-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .ftr-grid { grid-template-columns: 1fr; }
  .ftr-inner { padding: 48px 20px 32px; }
  .ftr-bottom { flex-direction: column; align-items: flex-start; }
}

/* =================================================
   SHARED PAGE HELPERS
================================================= */
.dl-sec {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
}

.dl-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 600px) {
  .dl-wrap { padding: 0 20px; }
}

/* Eyebrow tag */
.dl-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.dl-tag::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--border-mid);
  display: inline-block;
  flex-shrink: 0;
}

/* Headings */
.dl-h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--text);
}

.dl-h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text);
}

.dl-lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 540px;
}

/* Buttons */
.dl-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all .2s var(--ease);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
}

.dl-btn-navy { background: var(--navy); color: #fff; }
.dl-btn-navy:hover { background: white !important; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.dl-btn-ghost { border: 1.5px solid var(--border); color: var(--text-mid); background: transparent; }
.dl-btn-ghost:hover { border-color: var(--navy); color: var(--navy); }

.dl-btn-white { background: #fff; color: var(--navy); }
.dl-btn-white:hover { background: #e8ecff; }

/* Checklist */
.dl-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dl-checks li { font-size: 14px; color: var(--text-mid); padding-left: 20px; position: relative; line-height: 1.55; }
.dl-checks li::before { content: '—'; position: absolute; left: 0; color: var(--border-mid); }

/* Pills */
.dl-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 13px;
  background: var(--surface);
  margin: 4px;
}

/* Scroll animations */
.dl-fu {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.dl-fu.vis { opacity: 1; transform: translateY(0); }

.dl-fr {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.dl-fr.vis { opacity: 1; transform: translateX(0); }

/* =================================================
   CF7 FORM
================================================= */
.wpcf7 { margin: 0 !important; }
.dock-grid { display: grid; gap: 16px; margin-bottom: 20px; }
.dock-grid--2 { grid-template-columns: 1fr 1fr; }
.dock-grid p { margin: 0; }

.dock-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
  font-family: var(--font);
}
.dock-label .req { color: var(--navy); }

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 11px 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: var(--text-muted); opacity: .6; }

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,31,54,.08);
}

.wpcf7-form textarea { height: 120px; resize: vertical; }

.wpcf7-form .dock-pills { margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 7px; }
.wpcf7-form .dock-pills .wpcf7-list-item { margin: 0; }
.wpcf7-form .dock-pills .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  font-family: var(--font);
  cursor: pointer;
  transition: all .18s;
  background: var(--surface);
  user-select: none;
}
.wpcf7-form .dock-pills .wpcf7-list-item label:hover { border-color: var(--navy); color: var(--navy); background: #f0f4ff; }
.wpcf7-form .dock-pills .wpcf7-list-item input[type="checkbox"] { accent-color: var(--navy); width: 12px; height: 12px; flex-shrink: 0; }
.wpcf7-form .dock-pills .wpcf7-list-item:has(input:checked) label { border-color: var(--navy); color: var(--navy); background: #eef1fb; }

.wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 13px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  font-family: var(--font);
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.wpcf7-form input[type="submit"]:hover { background: var(--navy-mid); transform: translateY(-1px); }

.wpcf7-not-valid-tip { font-size: 11px; color: #dc2626; margin-top: 5px; font-family: var(--font); }

.wpcf7-response-output {
  margin-top: 16px !important;
  padding: 12px 16px !important;
  border-radius: var(--radius) !important;
  font-size: 13px !important;
  font-family: var(--font) !important;
  border: none !important;
}
.wpcf7-mail-sent-ok { background: #f0fdf4 !important; color: #166534 !important; border: 1px solid #bbf7d0 !important; }
.wpcf7-validation-errors { background: #fef2f2 !important; color: #991b1b !important; border: 1px solid #fecaca !important; }

@media (max-width: 600px) {
  .dock-grid--2 { grid-template-columns: 1fr; }
}

/* =================================================
   MISC
================================================= */
.grecaptcha-badge { display: none !important; }








/* ===== HEADER — RESET & REBUILD ===== */

.site-header {
  height: 62px !important;
  min-height: 85px !important;
}

.hdr-inner {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 62px !important;
  min-height: 62px !important;
  padding: 0 32px !important;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* LOGO — αριστερά στο flex flow */
.hdr-logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex !important;
  align-items: center;
  gap: 10px;
  order: 1;
}

/* NAV — κεντραρισμένο με absolute */
.hdr-nav {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 36px !important;
  z-index: 1;
  pointer-events: none;
  width: auto !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.hdr-nav a {
  pointer-events: all;
  display: inline-block !important;
  width: auto !important;
  padding: 0 !important;
  border: none !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
}

.hdr-nav a:hover,
.hdr-nav a.active {
  color: #fff !important;
}

/* CTA + BURGER — δεξιά */
.hdr-inner > div:last-child {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex !important;
  align-items: center;
  gap: 16px;
  order: 3;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  /* Κρύβω το nav — δεν είναι visible by default */
  .hdr-nav {
    display: none !important;
    position: fixed !important;
    top: 130px !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    background: #141829 !important;
    padding: 4px 20px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    z-index: 9997 !important;
    pointer-events: all;
  }

  /* Ανοίγει με .open */
  .hdr-nav.open {
    display: flex !important;
  }

  .hdr-nav a {
    padding: 14px 0 !important;
    width: 100% !important;
    font-size: 15px !important;
    border-bottom: 1px solid rgba(255,255,255,.07) !important;
    color: rgba(255,255,255,.7) !important;
  }

  .hdr-nav a:last-child {
    border-bottom: none !important;
  }

}






/* ===== MOBILE NAV — flush κάτω από header, scroll enabled ===== */
@media (max-width: 768px) {

  .hdr-nav.open {
    display: flex !important;
    position: fixed !important;
    /* Ακριβώς κάτω από τον header — χωρίς κενό */
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
top: 62px !important;
    /* Να μην καταλαμβάνει όλη την οθόνη */
    height: auto !important;
    max-height: calc(100vh - 62px) !important;
    overflow-y: auto !important;   /* scroll μέσα στο menu αν χρειαστεί */
    /* Δεν μπλοκάρει το scroll της σελίδας */
    pointer-events: all;
  }

}

/* ===== HEADER — σταθερό ύψος, logo αριστερά, nav κεντραρισμένο ===== */

.hdr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 62px;          /* σταθερό — δεν αλλάζει ποτέ */
  min-height: 62px;      /* εμποδίζει την συρρίκνωση στο scroll */
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Αφαιρώ το gap: 32px που μπορεί να δημιουργεί πρόβλημα */
}

/* Logo — κολλητά αριστερά, δεν μεγαλώνει */
.hdr-logo {
  flex: 0 0 auto;   /* δεν μεγαλώνει, δεν μικραίνει */
  margin-right: auto; /* σπρώχνει τα υπόλοιπα δεξιά */
}

/* Nav — στο κέντρο του header */
.hdr-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 36px;
}

/* CTA — κολλητά δεξιά */
.hdr-right,
.hdr-inner > div:last-child {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

/* Prevent Hello Elementor from shrinking the header on scroll */
.site-header,
.site-header * {
  transform-origin: top center;
}

.site-header {
  height: 62px !important;
  min-height: 62px !important;
  padding: 0 !important;
  line-height: normal !important;
}


/* Admin bar fix — μόνο desktop */
@media (min-width: 769px) {
  body.admin-bar .site-header {
    top: 32px;
  }
}















/* ===== ADMIN BAR — σταθερό στο mobile ===== */
@media (max-width: 782px) {

  /* Κάνε τον admin bar fixed αντί για static */
  #wpadminbar {
    position: fixed !important;
    top: 0 !important;
  }

  /* Header κάτω από τον admin bar */
  body.admin-bar .site-header {
    top: 46px !important;
  }

  /* Αποφύγε overlap με το περιεχόμενο */
  body.admin-bar {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

}



.site-header {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  top: 0 !important;
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
}

body {
  padding-top: 62px !important;
}


/* Hero section να μην σκεπάζει τον header */
.dl-sec {
  position: relative;
  z-index: 1;
}

.site-header {
  z-index: 99999 !important;
}

@media (max-width: 768px) {
  body {
    padding-top: 62px !important;
  }

  body.admin-bar {
 /*   padding-top: calc(62px + 46px) !important;*/
  }
}


/* LOGO FIX */
.hdr-logo img {
  height: 100px !important;
  width: auto !important;
  max-height: none !important;
}

.ftr-logo{
margin-bottom: 0 !important;
}

.ftr-logo img{
 height: 100px !important;
  width: auto !important;
  max-height: none !important;
}

@media (max-width: 768px) {
    body.admin-bar .hdr-nav.open {
        top: calc(var(--hdr-h) + 46px) !important;
    }
}

.site-footer .ftr-brand{
display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

@media (max-width: 768px) {
.ftr-grid .ftr-col{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.ftr-grid .ftr-col ul{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;

}

}



/* ===== FOOTER TOP LINE (PREMIUM) ===== */

.site-footer {
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 100%;
  max-width: 1280px;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.25),
    rgba(255,255,255,0.15),
    transparent
  );
}


body{
padding-top: 0 !important;
}


html, body {
  overflow-x: hidden;
}

.e-con-inner{
padding-bottom: 0 !important;
}






/* HERO OVERLAY */
.dl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55); /* dark navy overlay */
  z-index: 0;
}

.dl-hero > * {
  position: relative;
  z-index: 1;
}







/* ===== DESKTOP FIX ===== */
.dl-svc-detail > .dl-btn {
  grid-column: 1;
  justify-self: flex-start;
  margin-top: 20px;
}

.dl-svc-detail-rev > .dl-btn {
  grid-column: 2;
  justify-self: flex-start;
}


/* ===== BUTTON SWITCH SYSTEM ===== */

/* desktop */
.dl-btn-mobile {
  display: none !important;
}

/* mobile */
@media (max-width: 900px){

  .dl-btn-desktop {
    display: none !important;
  }

  .dl-btn-mobile {
    display: block !important;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

}



/* MOBILE BUTTON FIX */

/* default (desktop) */
.dl-btn-mobile{
  display: none;
}

/* mobile only */
@media (max-width: 900px){

  /* κρύβει το desktop button */
  .dl-btn-desktop{
    display: none !important;
  }

  /* δείχνει το mobile */
  .dl-btn-mobile{
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 24px;
  }

  /* αυτό είναι το ΜΑΓΙΚΟ fix */
  .dl-svc-detail{
    display: flex !important;
    flex-direction: column !important;
  }

}

/* MOBILE FIX FOR REVERSED SECTIONS */

@media (max-width: 900px){

  /* reset RTL */
  .dl-svc-detail-rev{
    direction: ltr !important;
  }

  /* κάνε όλα column */
  .dl-svc-detail,
  .dl-svc-detail-rev{
    display: flex !important;
    flex-direction: column !important;
  }

  /* σειρά στοιχείων */
  .dl-svc-detail-text{ order: 1; }
  .dl-svc-detail-pills{ order: 2; }
  .dl-btn-mobile{ order: 3; }

}









.dl-sec:first-of-type{
  position:relative;
  overflow:hidden;
}

.dl-sec:first-of-type::after{
  content:"";
  position:absolute;
  top:-50%;
  right:-10%;
  width:400px;
  height:400px;
  background:#3c4f8f;
  opacity:0.08;
  transform:rotate(25deg);
}





/* KILL fake button */
.hdr-nav.open::after{
  display:none !important;
}

/* REAL mobile CTA μέσα στο menu */
@media (max-width:768px){

  .hdr-nav.open{
    padding-bottom:20px;
  }

  .hdr-nav.open a:last-child{
    border-bottom:none;
  }

  .hdr-nav.open .menu-cta{
    display:block;
    padding:12px 20px;
    background:#fff;
    color:#1a1f36;
    font-weight:700;
    text-align:center;
    border-radius:8px;
    text-decoration:none;
  }

}


#main-nav .menu-cta{
  display:none !important;
}


@media (max-width:768px){

  #main-nav .menu-cta{
    display:block !important;
  }

}



/* mobile menu CTA σαν normal link */
@media (max-width:768px){

   #main-nav .menu-cta{
    display:block !important;
    padding:14px 0;
    width:100%;

    font-size:15px;
    font-weight:600;

    color:rgba(255,255,255,.7);
    text-decoration:none;

    border-bottom:1px solid rgba(255,255,255,.07);
    background:none;
  }

}


@media (max-width:768px){

  .hdr-nav.open .menu-cta{
    display:block !important;
    width:100% !important;

    padding:14px 0 !important;
    text-align:left !important;

    font-size:15px !important;
    font-weight:600 !important;
    color:rgba(255,255,255,.7) !important;

    border-bottom:1px solid rgba(255,255,255,.07) !important;
  }

}

.hdr-nav.open a:last-child{
  border-bottom:none !important;
}







/* ===== PREMIUM TYPOGRAPHY ===== */

/* headings font */
.dl-h1,
.dl-h2 {
  font-family: "Manrope", sans-serif !important;
}

/* H1 — πιο elegant */
.dl-h1 {
  font-size: clamp(28px, 3.8vw, 48px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.12 !important;
}

/* H2 — πιο refined */
.dl-h2 {
  font-size: clamp(20px, 2.2vw, 30px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.2 !important;
}

/* paragraph λίγο πιο classy */
.dl-lead,
.dl-svc-detail-text p {
  font-size: 15.5px !important;
  line-height: 1.8 !important;
  color: #4b5563 !important;
}

@media (max-width:768px){

.ftr-bottom{

    text-align: center;
    justify-content: center;
    flex-direction: row;
}


}
