/* ============================================================
   ANESIS MOBILITY — Design System
   Palette: Navy #162f5c / White, from the official brochure
   ============================================================ */

:root {
  --navy: #162f5c;
  --navy-dark: #0f2145;
  --navy-mid: #1d3b73;
  --navy-soft: #2c4d8f;
  --blue-tint: #eef2f9;
  --blue-tint-2: #e2e9f5;
  --line: #d9e1ef;
  --ink: #16233a;
  --body: #45536b;
  --muted: #6b7a94;
  --white: #ffffff;
  --success: #1d7a4f;
  --success-bg: #e7f5ee;
  --error: #b3362c;
  --error-bg: #fbeeec;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(22, 47, 92, 0.07);
  --shadow-md: 0 10px 30px rgba(22, 47, 92, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 33, 69, 0.18);
  --container: 1160px;
  --font: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px; /* ώστε τα anchors να μην κρύβονται κάτω από το sticky header */
  -webkit-text-size-adjust: 100%;
  overscroll-behavior: none;
}

body {
  margin: 0;
  overscroll-behavior: none;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: var(--navy); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 84px 0; }
.section--tint { background: var(--blue-tint); }
.section--navy { background: var(--navy); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.06rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 14px;
}

.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255, 255, 255, 0.82); }
.section--navy .eyebrow { color: rgba(255, 255, 255, 0.65); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--navy-mid); box-shadow: var(--shadow-md); }

.btn--white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover { box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn--outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn--lg { padding: 18px 38px; font-size: 1.07rem; }
.btn .icon { transition: transform 0.18s ease; }
.btn:hover .icon { transform: translateX(3px); }
.btn--block { width: 100%; }

.btn .icon { width: 20px; height: 20px; flex: none; }

.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid var(--navy-soft);
  outline-offset: 2px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}

.brand__mark { width: 46px; height: auto; flex: none; }

.brand__name {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand__tag {
  display: block;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 6px; }

/* Το μπλοκ επικοινωνίας εμφανίζεται μόνο στο μενού κινητών */
.main-nav__extra { display: none; }

.main-nav a {
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--body);
  transition: color 0.15s, background 0.15s;
}

.main-nav a:hover { color: var(--navy); background: var(--blue-tint); }

.main-nav a.is-active { color: var(--navy); font-weight: 800; }

.main-nav .btn {
  margin-left: 10px;
  padding: 11px 22px;
  font-size: 0.95rem;
}

/* Το κουμπί «Κράτηση» κρατά λευκό κείμενο — υπερισχύει των κανόνων .main-nav a */
.main-nav a.btn--primary,
.main-nav a.btn--primary.is-active { color: var(--white); font-weight: 700; }
.main-nav a.btn--primary:hover { background: var(--navy-mid); color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Language switch */
.lang-switch {
  display: inline-flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
}

.lang-switch button {
  border: 0;
  background: transparent;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-switch button.is-on {
  background: var(--navy);
  color: var(--white);
}

/* Burger */
.nav-toggle {
  display: none;
  border: 1.5px solid var(--line);
  background: var(--white);
  -webkit-tap-highlight-color: transparent;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: background 0.15s;
}

.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }

  /* Χωρίς backdrop-filter: αλλιώς το header γίνεται containing block
     για το fixed μενού και δεν μπορεί να πιάσει όλη την οθόνη. */
  .site-header {
    background: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Λογότυπο, γλώσσα και burger μένουν πάνω από το πάνελ του μενού */
  .site-header__inner .brand, .header-actions { position: relative; z-index: 3; }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--white);
    /* Στατικό μενού: όλα χωράνε σε μία οθόνη, χωρίς κύλιση */
    padding: calc(76px + clamp(8px, 2vh, 22px)) 26px calc(clamp(14px, 2.4vh, 26px) + env(safe-area-inset-bottom, 0px));
    overflow: hidden;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.34s;
  }

  /* Με κλειδωμένο scroll το sticky header χάνει τη θέση του, οπότε γίνεται fixed:
     λογότυπο, γλώσσα και το Χ μένουν πάντα ορατά, όσο κι αν έχει κατέβει η σελίδα.
     Το padding αντισταθμίζει τον χώρο που αφήνει, ώστε να μην τιναχτεί η σελίδα. */
  body.nav-open { overflow: hidden; padding-top: var(--header-h, 77px); }

  body.nav-open .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  body.nav-open .main-nav { opacity: 1; visibility: visible; transform: none; }

  .main-nav a:not(.btn) {
    padding: clamp(9px, 1.75vh, 18px) 4px;
    font-size: clamp(1rem, 2.3vh, 1.14rem);
    font-weight: 700;
    color: var(--ink);
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    background: none;
  }

  .main-nav a:not(.btn):hover { background: none; color: var(--navy); }

  .main-nav a.is-active:not(.btn) { color: var(--navy); }

  .main-nav .btn { margin: clamp(14px, 2.4vh, 26px) 0 0; padding: clamp(13px, 2vh, 18px) 26px; font-size: clamp(0.98rem, 2.2vh, 1.06rem); }

  /* --- Στοιχεία επικοινωνίας στο κάτω μέρος του μενού --- */
  .main-nav__extra {
    display: block;
    margin-top: auto;                       /* κολλάει στο κάτω μέρος, χωρίς κενά */
    padding-top: clamp(12px, 2.2vh, 22px);
    border-top: 1px solid var(--line);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.nav-open .main-nav__extra { opacity: 1; transform: none; transition-delay: 0.32s; }

  .main-nav__contact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: clamp(6px, 1.15vh, 11px) 0;
    text-decoration: none;
    color: var(--ink);
  }

  .main-nav__contact .icon { width: 21px; height: 21px; flex: none; color: var(--navy); }
  .main-nav__contact span { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
  .main-nav__contact strong { font-size: 0.98rem; font-weight: 700; }
  .main-nav__contact small { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

  .main-nav__addr {
    display: flex;
    margin: clamp(8px, 1.4vh, 14px) 0 0;
    font-size: clamp(0.78rem, 1.6vh, 0.85rem);
    color: var(--muted);
  }

  /* Διαδοχική εμφάνιση των στοιχείων */
  .main-nav > a {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), color 0.15s;
  }

  body.nav-open .main-nav > a { opacity: 1; transform: none; }
  body.nav-open .main-nav > a:nth-child(1) { transition-delay: 0.07s; }
  body.nav-open .main-nav > a:nth-child(2) { transition-delay: 0.12s; }
  body.nav-open .main-nav > a:nth-child(3) { transition-delay: 0.17s; }
  body.nav-open .main-nav > a:nth-child(4) { transition-delay: 0.22s; }
  body.nav-open .main-nav > a:nth-child(5) { transition-delay: 0.28s; }
}

/* Στενά κινητά: το header πρέπει να χωρά brand + γλώσσα + burger */
@media (max-width: 420px) {
  .site-header__inner { gap: 8px; min-height: 66px; }
  .main-nav { padding: calc(66px + clamp(6px, 1.6vh, 16px)) 20px calc(clamp(12px, 2vh, 22px) + env(safe-area-inset-bottom, 0px)); }
  .brand { gap: 8px; }
  .brand__mark { width: 34px; }
  .brand__name { font-size: 0.8rem; }
  .brand__tag { font-size: 0.47rem; letter-spacing: 0.24em; }
  .lang-switch button { padding: 4px 8px; font-size: 0.72rem; }
  .nav-toggle { width: 38px; height: 38px; }
  .header-actions { gap: 6px; }
  .site-header .container { padding: 0 14px; }
}

/* ---------- Hero (home): φωτογραφία πλήρους οθόνης ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
}

/* Η φωτογραφία καλύπτει όλο το hero, σε κάθε μέγεθος οθόνης */
.hero__figure {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__figure picture { display: block; width: 100%; height: 100%; }

.hero__figure picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}

.hero__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 33, 69, 0.94) 0%, rgba(15, 33, 69, 0.82) 42%, rgba(15, 33, 69, 0.42) 100%),
    linear-gradient(180deg, rgba(15, 33, 69, 0.55) 0%, rgba(15, 33, 69, 0.2) 45%, rgba(15, 33, 69, 0.5) 100%);
}

/* Στο hero η φωτογραφία είναι αρκετή, το watermark μένει μόνο στις εσωτερικές σελίδες */
.hero > .hero__watermark { display: none; }

.hero__watermark {
  position: absolute;
  right: -140px;
  top: -60px;
  width: 560px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 90px;
  padding-bottom: 90px;
}

.hero__content { position: relative; z-index: 2; max-width: 680px; }

.hero__eyebrow {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.6vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero h1 span { display: block; }

.hero__h1-soft { color: rgba(255, 255, 255, 0.72); font-weight: 700; }

.hero__sub {
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero__cta .btn { padding: 18px 34px; }

.hero__chips { display: flex; flex-wrap: wrap; gap: 12px 26px; }

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero__chip .icon { width: 19px; height: 19px; flex: none; color: #9db8e8; }

@media (max-width: 920px) {
  .hero__figure picture img { object-position: 74% 50%; }

  .hero__figure::after {
    background: linear-gradient(180deg, rgba(15, 33, 69, 0.92) 0%, rgba(15, 33, 69, 0.82) 45%, rgba(15, 33, 69, 0.68) 100%);
  }

  .hero .hero__watermark { display: none; }

  .hero__inner { padding-top: 64px; padding-bottom: 64px; }

  /* Κουμπιά σε στοίβα, στο πλάτος του περιεχομένου τους */
  .hero__cta { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 34px; }
  .hero__cta .btn { width: auto; }

  /* Τα χαρακτηριστικά σε δύο στήλες */
  .hero__chips { display: grid; grid-template-columns: repeat(2, auto); justify-content: start; gap: 12px 22px; }
}

@media (max-width: 420px) {
  .hero__chips { grid-template-columns: 1fr; }
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 64px 0 68px;
  position: relative;
  overflow: hidden;
}

.page-hero h1 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.9rem, 4.2vw, 2.9rem); }

.page-hero p { color: rgba(255, 255, 255, 0.82); max-width: 620px; font-size: 1.08rem; margin: 0; }

.page-hero .hero__watermark { width: 420px; right: -120px; top: -80px; }

/* ---------- Cards & grids ---------- */

.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--blue-tint);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon .icon { width: 26px; height: 26px; }

.card h3 { margin-bottom: 10px; }
.card p { margin: 0; font-size: 0.98rem; }

/* Numbered features (brochure style) */
.num-feature { padding: 6px 0; }

.num-feature__no {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

.num-feature h3 { display: inline-block; vertical-align: middle; margin: 0; }

.num-feature hr {
  border: 0;
  border-top: 1.5px solid var(--line);
  margin: 14px 0 16px;
}

.num-feature p { margin: 0; font-size: 0.99rem; }

/* Steps: ισομεγέθεις κάρτες */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 34px 26px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.step__no {
  width: 54px;
  height: 54px;
  flex: none;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 { margin-bottom: 8px; font-size: 1.14rem; }
.step p { font-size: 0.97rem; margin: 0; }

@media (max-width: 640px) {
  /* Σε κινητά: αριθμός αριστερά, τίτλος και κείμενο σε στήλη δεξιά */
  .step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "no title"
      "no text";
    align-items: center;
    column-gap: 16px;
    text-align: left;
    padding: 20px 22px;
  }
  .step__no { grid-area: no; width: 44px; height: 44px; margin-bottom: 0; font-size: 1.08rem; }
  .step h3 { grid-area: title; margin-bottom: 3px; font-size: 1.06rem; align-self: end; }
  .step p { grid-area: text; align-self: start; }
}

/* Stats band */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }

.stat__value {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat__label { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; font-weight: 600; }

@media (max-width: 640px) { .stats { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Featured model split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split__media {
  background: var(--blue-tint);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.split__media img { border-radius: 14px; height: auto; mix-blend-mode: multiply; }

/* Παραλλαγή για κανονικές φωτογραφίες (όχι product shots σε λευκό φόντο) */
.split__media--photo { padding: 0; background: none; overflow: hidden; box-shadow: var(--shadow-md); }
.split__media--photo img {
  mix-blend-mode: normal;
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.split__media--photo.split__media--tall img { aspect-ratio: 16 / 9; object-position: 50% 45%; }

.split ul.checklist { list-style: none; padding: 0; margin: 0 0 30px; }

.checklist li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 1.01rem;
}

.checklist .icon {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--navy);
  margin-top: 2px;
}

.checklist strong { color: var(--ink); }

@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
}

/* Γραμμή τιμής */
.price-line {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 26px;
}

.price-line strong {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
}

/* ---------- Section με φωτογραφία-φόντο σε κινητά ---------- */

@media (max-width: 920px) {
  /* Σε κινητά η φωτογραφία αποσύρεται: μένει καθαρό κείμενο σε ανοιχτό φόντο */
  .section--photo-mobile .split__media--photo { display: none; }
}

/* ---------- Gallery (wheelchair page) ---------- */

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.gallery__main {
  grid-column: 1 / -1;
  background: var(--blue-tint);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__main img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.gallery__thumb {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.gallery__thumb:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery__thumb.is-active { border-color: var(--navy); box-shadow: 0 0 0 2px var(--navy); }
.gallery__thumb img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; height: auto; }

@media (max-width: 640px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__main { padding: 18px; }
}

/* ---------- Spec band (αναδίπλωση & χαρακτηριστικά) ---------- */

.spec-band {
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
}

.spec-band__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  grid-template-areas:
    "text  media"
    "stats media";
  column-gap: 60px;
  row-gap: 34px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}

.spec-band__text { grid-area: text; align-self: end; }
.spec-band__media { grid-area: media; }
.spec-stats { grid-area: stats; align-self: start; }

.spec-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.spec-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin-bottom: 16px;
}

.spec-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
  max-width: 460px;
  margin-bottom: 38px;
}

.spec-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  max-width: 520px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
}

.spec-stats > div { padding-right: 18px; }
.spec-stats > div + div { border-left: 1px solid rgba(255, 255, 255, 0.16); padding-left: 22px; }

.spec-stats dt {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: #9db8e8;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.spec-stats dd {
  margin: 4px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.spec-band__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Απαλό φως πίσω από το αμαξίδιο, για βάθος */
.spec-band__media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(120, 160, 225, 0.28) 0%, rgba(120, 160, 225, 0.1) 42%, transparent 68%);
  pointer-events: none;
}

.spec-band__media picture { position: relative; display: block; width: 100%; }

.spec-band__media img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.42));
}

@media (max-width: 920px) {
  .spec-band__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* Σε κινητά: κείμενο, μετά το αμαξίδιο, μετά τα χαρακτηριστικά */
  .spec-band__inner {
    grid-template-areas: "text" "media" "stats";
    row-gap: 26px;
  }
  .spec-band__text, .spec-stats { align-self: auto; }
  .spec-band__text p { margin-bottom: 0; }
  .spec-stats { max-width: none; }
}

@media (max-width: 640px) {
  /* Πιο πολύ αέρα στα πλάγια, το κείμενο δεν κολλάει στις άκρες */
  .spec-band > .spec-band__inner { padding-left: 26px; padding-right: 26px; }

  /* Τα χαρακτηριστικά σε πάνελ: ετικέτα αριστερά, τιμή δεξιά */
  .spec-stats {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4px 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
  }

  .spec-stats > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
  }

  .spec-stats > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    padding-left: 0;
  }

  .spec-stats > div { padding-right: 0; }

  .spec-stats dt { order: 2; font-size: 1.45rem; }
  .spec-stats dd { order: 1; margin: 0; font-size: 0.98rem; color: rgba(255, 255, 255, 0.78); }
}

/* ---------- Strip λεπτομερειών (3 εικόνες 16:9) ---------- */

.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.strip__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-tint);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.strip__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.strip__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.strip__item figcaption {
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
}

@media (max-width: 780px) {
  .strip { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Photo band (φωτογραφία πλήρους πλάτους με κείμενο) ---------- */

.photo-band {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.photo-band {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.photo-band__mark {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 460px;
  opacity: 0.07;
  pointer-events: none;
}

.photo-band .container { position: relative; z-index: 1; width: 100%; }

.photo-band h2 { color: var(--white); max-width: 540px; }

.photo-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 500px;
  font-size: 1.06rem;
  margin-bottom: 28px;
}

@media (max-width: 640px) {
  .photo-band { min-height: 0; padding: 56px 0; }
  .photo-band__mark { width: 300px; right: -70px; bottom: -80px; }
}

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, 0.82); margin: 0; max-width: 480px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; flex: none; }

@media (max-width: 860px) {
  .cta-band { flex-direction: column; align-items: flex-start; padding: 44px 32px; }
}

/* ---------- Booking ---------- */

.booking-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 34px;
  align-items: start;
}

@media (max-width: 980px) {
  .booking-layout { grid-template-columns: 1fr; }
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}

.panel > h3, .panel > .panel-h { font-size: 1.25rem; margin: 0 0 20px; }

/* Calendar */
.cal-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

@media (max-width: 760px) { .cal-wrap { grid-template-columns: 1fr; } }

.cal { user-select: none; }

.cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  min-height: 40px;
}

.cal__title { font-weight: 800; color: var(--ink); font-size: 1.02rem; text-transform: capitalize; }

.cal__nav {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}

.cal__nav:hover:not(:disabled) { background: var(--blue-tint); border-color: var(--navy-soft); }
.cal__nav:disabled { opacity: 0.35; cursor: default; }
.cal__nav .icon { width: 18px; height: 18px; }

.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal__dow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 6px 0 10px;
}

.cal__day {
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s, color 0.12s;
}

.cal__day:hover:not(:disabled) { background: var(--blue-tint-2); }

.cal__day:disabled {
  color: #c1cad9;
  cursor: default;
  text-decoration: line-through;
  text-decoration-color: rgba(193, 202, 217, 0.7);
}

.cal__day--empty { visibility: hidden; }

.cal__day--today { box-shadow: inset 0 0 0 1.5px var(--navy-soft); }

.cal__day--in-range { background: var(--blue-tint-2); border-radius: 0; }

.cal__day--start, .cal__day--end {
  background: var(--navy) !important;
  color: var(--white);
  border-radius: 10px;
}

.cal__day--start { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.cal__day--end { border-top-left-radius: 0; border-bottom-left-radius: 0; }

.cal__day--start.cal__day--end { border-radius: 10px; }

.cal-legend { display: flex; gap: 22px; margin-top: 18px; flex-wrap: wrap; }

.cal-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); font-weight: 600; }

.cal-legend i {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
}

.cal-legend .lg-sel { background: var(--navy); }
.cal-legend .lg-range { background: var(--blue-tint-2); }
.cal-legend .lg-off { background: repeating-linear-gradient(45deg, #e7ecf5, #e7ecf5 3px, #f6f8fc 3px, #f6f8fc 6px); }

/* Booking summary */
.summary { position: sticky; top: 100px; }

.summary__rows { margin: 0 0 18px; padding: 0; list-style: none; }

.summary__rows li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
}

.summary__rows li span:first-child { color: var(--muted); font-weight: 600; }
.summary__rows li span:last-child { color: var(--ink); font-weight: 700; text-align: right; }

.summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0 4px;
  font-weight: 800;
  color: var(--ink);
  font-size: 1.05rem;
}

.summary__total strong { font-size: 1.7rem; color: var(--navy); letter-spacing: -0.02em; }

.summary__hint { font-size: 0.86rem; color: var(--muted); margin: 10px 0 0; }

.discount-tag {
  display: inline-block;
  background: var(--success-bg);
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 8px;
  padding: 3px 10px;
}

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }

.field label { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.field label .req { color: var(--error); }

.field input, .field textarea, .field select {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(44, 77, 143, 0.15);
}

.field input.is-invalid, .field textarea.is-invalid { border-color: var(--error); }

.field .field-error { font-size: 0.82rem; color: var(--error); font-weight: 600; display: none; }
.field.has-error .field-error { display: block; }

.form-note { font-size: 0.88rem; color: var(--muted); }

.form-alert {
  border-radius: 14px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.97rem;
  margin-bottom: 18px;
  display: none;
}

.form-alert.is-visible { display: block; }
.form-alert--success { background: var(--success-bg); color: var(--success); }
.form-alert--error { background: var(--error-bg); color: var(--error); }

.alt-send { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- FAQ ---------- */

.faq { max-width: 760px; margin: 0 auto; }

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq__q .icon { width: 20px; height: 20px; flex: none; color: var(--navy); transition: transform 0.2s; }

.faq__item.is-open .faq__q .icon { transform: rotate(45deg); }

.faq__a { display: none; padding: 0 24px 20px; font-size: 0.98rem; }
.faq__item.is-open .faq__a { display: block; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }

@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card { display: flex; gap: 18px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-card:last-child { border-bottom: 0; }

.contact-card__icon {
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 14px;
  background: var(--blue-tint);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__icon .icon { width: 24px; height: 24px; }

.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p { margin: 0; font-size: 0.98rem; }
.contact-card a { font-weight: 700; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}

.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.8); margin-top: 0; }

.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 0 48px;
}

@media (max-width: 860px) {
  .site-footer__main { grid-template-columns: 1fr; gap: 36px; }
}

.site-footer .brand { color: var(--white); margin-bottom: 16px; }
.site-footer .brand__tag { color: rgba(255, 255, 255, 0.55); }

.site-footer h4,
.site-footer .footer-h {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.site-footer p { font-size: 0.96rem; }

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.98rem;
}

.footer-links a:hover { color: var(--white); text-decoration: underline; }

.footer-contact { list-style: none; margin: 0; padding: 0; }

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.96rem;
}

.footer-contact .icon { width: 19px; height: 19px; flex: none; margin-top: 3px; color: #9db8e8; }

.footer-contact a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.footer-contact a:hover { color: var(--white); text-decoration: underline; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.site-footer__bottom a:hover { color: var(--white); text-decoration: underline; }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
}

/* ---------- Utilities ---------- */

.icon { display: inline-block; vertical-align: middle; }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  z-index: 200;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus { left: 0; }

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
}

.whatsapp-fab:hover { transform: scale(1.07); }
.whatsapp-fab .icon { width: 30px; height: 30px; }

/* ---------- Print ---------- */

@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .whatsapp-fab, .nav-toggle, .lang-switch, .skip-link { display: none !important; }
  .site-header { position: static; }
}

/* ---------- Τυπογραφία & αποστάσεις σε κινητά ---------- */

@media (max-width: 920px) {
  .section { padding: 68px 0; }
  .hero__sub { font-size: 1.06rem; max-width: 560px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }

  h1 { font-size: clamp(1.95rem, 8.4vw, 2.6rem); line-height: 1.12; }
  h2 { font-size: clamp(1.5rem, 6.6vw, 2rem); }
  h3 { font-size: 1.16rem; }

  .section { padding: 58px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: 1rem; }
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; margin-bottom: 10px; }

  .hero h1 { margin-bottom: 16px; }
  .hero__eyebrow { font-size: 0.74rem; margin-bottom: 14px; }
  .hero__sub { font-size: 1.02rem; margin-bottom: 30px; }
  .hero__chip { font-size: 0.9rem; }
  .hero__cta .btn { padding: 16px 28px; font-size: 1rem; }

  .btn--lg { padding: 16px 28px; font-size: 1rem; }

  .page-hero { padding: 44px 0 48px; }
  .page-hero p { font-size: 1rem; }

  .card { padding: 24px 22px; }
  .card__icon { width: 48px; height: 48px; border-radius: 13px; margin-bottom: 16px; }

  .split { gap: 30px; }
  .num-feature__no { font-size: 1.7rem; }
  .checklist li { font-size: 0.98rem; }

  .photo-band { min-height: 380px; }
  .photo-band p { font-size: 1rem; }

  .cta-band { padding: 34px 24px; border-radius: var(--radius); }
  .cta-band__actions { width: 100%; }
  .cta-band__actions .btn { flex: 1 1 100%; }

  .panel { padding: 24px 20px; border-radius: var(--radius); }
  .price-line { margin: 20px 0 22px; }

  .site-footer__main { padding: 52px 0 40px; }
}
