:root{
  --bg:#0b1220;
  --ink:#0f172a;
  --paper:#ffffff;
  --muted:#6b7280;
  --line:rgba(15,23,42,.12);
  --accent:#d11a2a;

  --radius:18px;
  --shadow:0 18px 45px rgba(2,6,23,.10);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
}
img{max-width:100%;display:block}
a{color:inherit}
.container{width:min(1120px,92vw);margin:0 auto}
.muted{color:var(--muted)}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
.skip{position:absolute;left:-999px;top:10px;background:#fff;padding:10px 14px;border-radius:12px}
.skip:focus{left:12px;z-index:9999}

.header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0}

.brand{display:flex;gap:12px;align-items:center;text-decoration:none}
/* Bigger logo in header */
.brand__logo{
  width: 100px;   /* από 44px -> 64px (άλλαξε το αν θες ακόμα πιο μεγάλο) */
  height: 90px;
  object-fit: contain;
  border-radius: 10px;
}

/* Keep header aligned nicely when logo grows */
.header__inner{
  align-items: center;
  padding: 10px 0; /* λίγο πιο tight για να μη φουσκώσει πολύ το header */
}


.brand__name{display:block;font-weight:800}
.brand__sub{display:block;font-size:12px;color:var(--muted);margin-top:1px}

.nav{display:flex;align-items:center}
.nav__toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
}
.nav__icon{width:18px;height:2px;background:#111827;display:block;position:relative}
.nav__icon::before,.nav__icon::after{content:"";position:absolute;left:0;width:18px;height:2px;background:#111827}
.nav__icon::before{top:-6px}
.nav__icon::after{top:6px}

.nav__menu{display:flex;align-items:center;gap:18px}
.nav__link{
  text-decoration:none;
  font-weight:650;
  padding:10px 10px;
  border-radius:12px;
}
.nav__link:hover{background:rgba(15,23,42,.05)}
.nav__link.is-active{background:rgba(209,26,42,.08)}
.nav__cta{display:flex;gap:10px;align-items:center;margin-left:8px}

.btn{
  border:1px solid transparent;
  border-radius:14px;
  padding:10px 14px;
  font-weight:750;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:transform .12s ease, box-shadow .12s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:linear-gradient(135deg, #0b1220, #111827);
  color:#fff;
  box-shadow:0 14px 30px rgba(2,6,23,.20);
}
.btn--ghost{
  background:#fff;
  border-color:var(--line);
}
.btn--lg{padding:14px 18px;border-radius:16px}

.hero{
  position:relative;
  min-height:72vh;
  display:grid;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero__media{position:absolute;inset:0}
.hero__media img{width:100%;height:100%;object-fit:cover;filter:saturate(.95) contrast(1.05)}
.hero__shade{
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(209,26,42,.18), transparent 52%),
    linear-gradient(90deg, rgba(11,18,32,.74), rgba(11,18,32,.18));
}
.hero__content{position:relative;padding:64px 0;color:#fff}
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
}
.pill__dot{width:8px;height:8px;border-radius:99px;background:var(--accent)}
.hero__title{font-size:clamp(34px,4.2vw,56px);line-height:1.08;margin:14px 0 10px}
.hero__lead{font-size:clamp(16px,1.6vw,18px);max-width:58ch;margin:0 0 18px;color:rgba(255,255,255,.90)}
.hero__actions{display:flex;gap:12px;flex-wrap:wrap;margin:14px 0 22px}

.proof{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;max-width:720px}
.proof__item{
  padding:14px 14px;border-radius:16px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
}
.proof__num{font-weight:900;font-size:22px}
.proof__lbl{font-size:13px;color:rgba(255,255,255,.82);margin-top:2px}

.section{padding:72px 0}
.section--alt{background:rgba(15,23,42,.03)}
.section--cta{background:linear-gradient(180deg, rgba(15,23,42,.03), rgba(15,23,42,.00))}
.section__head{max-width:70ch}
.section__head h2{font-size:clamp(26px,3vw,36px);margin:0 0 8px}
.section__head p{margin:0;color:var(--muted)}

.footer{border-top:1px solid var(--line);padding:28px 0}
.footer__inner{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}

@media (max-width: 860px){
  .nav__toggle{display:inline-flex}
  .nav__menu{
    position:absolute;right:4vw;top:70px;
    width:min(360px,92vw);
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow);
    padding:10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .nav__menu.is-open{display:flex}
  .nav__cta{margin-left:0;flex-direction:column}
  .proof{grid-template-columns:1fr}
}
/* --- Step 2: Services + Process --- */
.cards{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 26px rgba(2,6,23,.05);
}
.card h3{margin:10px 0 8px}
.card p{margin:0 0 10px;color:rgba(15,23,42,.82)}
.card__icon{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:900;
  background:rgba(209,26,42,.10);
  border:1px solid rgba(209,26,42,.18);
}
.mini{
  margin:0 0 10px;
  padding-left:18px;
  color:rgba(15,23,42,.78);
}
.link{
  color:#111827;
  text-decoration:none;
  font-weight:800;
}
.link:hover{text-decoration:underline}

.two{
  margin-top:18px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:16px;
  align-items:start;
}

.panel{
  background:linear-gradient(180deg, rgba(15,23,42,.03), rgba(15,23,42,.00));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
}
.panel__kicker{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.70);
}
.panel__title{margin:10px 0 6px}

.steps{
  margin:12px 0 14px;
  padding-left:18px;
}
.steps li{margin:8px 0}

.badges{display:flex;flex-wrap:wrap;gap:8px}
.badge{
  font-size:12px;
  font-weight:800;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
}

.feature{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 26px rgba(2,6,23,.05);
}
.ticks{margin:10px 0 0;padding-left:0;list-style:none}
.ticks li{
  position:relative;
  padding-left:26px;
  margin:10px 0;
  color:rgba(15,23,42,.82);
}
.ticks li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  width:18px;height:18px;
  display:grid;place-items:center;
  border-radius:6px;
  background:rgba(15,23,42,.06);
  border:1px solid var(--line);
  font-weight:900;
}

.strip{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(11,18,32,.06), rgba(209,26,42,.06));
}
.strip h3{margin:0 0 4px}
.strip p{margin:0;color:rgba(15,23,42,.75)}

@media (max-width: 980px){
  .cards{grid-template-columns:1fr}
  .two{grid-template-columns:1fr}
  .strip{flex-direction:column;align-items:flex-start}
}
/* --- Step 3: Contact / Estimate --- */
.contact{
  margin-top:18px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:16px;
  align-items:start;
}
.contact__form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 26px rgba(2,6,23,.05);
}
.form{margin-top:4px}
.row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.field{display:grid;gap:8px;margin-top:12px}
.field span{font-weight:800;font-size:13px}
.field input,.field select,.field textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 12px;
  font:inherit;
  outline:none;
  background:#fff;
}
.field textarea{resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:rgba(209,26,42,.35);
  box-shadow:0 0 0 4px rgba(209,26,42,.10);
}
.form__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.form__fine{margin:10px 0 0;font-size:13px}
.tiny{font-size:12px}
.form__msg{margin:10px 0 0;font-weight:800}

.trustbar{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.trustbar__item{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  background:linear-gradient(135deg, rgba(11,18,32,.04), rgba(209,26,42,.04));
}
.trustbar__top{font-weight:900}
.trustbar__sub{font-size:12px;color:rgba(15,23,42,.74);margin-top:2px}

.contact__info{
  display:grid;
  gap:12px;
}
.infocard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 26px rgba(2,6,23,.05);
}
.infocard__title{font-weight:950;font-size:14px;letter-spacing:.12em;text-transform:uppercase;color:rgba(15,23,42,.70)}
.infocard__cta{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap}

.map{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
  min-height:220px;
}
.map__ph{
  padding:18px;
}
.map__title{font-weight:900;margin-bottom:6px}

.areas{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  background:#fff;
}
.areas__title{font-weight:900;margin-bottom:10px}
.areas__grid{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.area{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(15,23,42,.03);
  font-weight:800;
  font-size:12px;
}

@media (max-width: 980px){
  .contact{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  .trustbar{grid-template-columns:1fr}
}
/* --- Step 4: About --- */
.about{
  margin-top:18px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:16px;
  align-items:start;
}
.about__main{
  display:grid;
  gap:12px;
}
.story{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 26px rgba(2,6,23,.05);
}
.story__kicker{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(15,23,42,.70);
}
.story h3{margin:10px 0 6px}
.story p{margin:0}

.values{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 26px rgba(2,6,23,.05);
}
.values__title{font-weight:900;margin-bottom:10px}
.values__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.value{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  background:rgba(15,23,42,.02);
}
.value__top{font-weight:900}
.value__sub{margin-top:4px;font-size:13px;color:rgba(15,23,42,.78)}

.timeline{
  background:linear-gradient(180deg, rgba(15,23,42,.03), rgba(15,23,42,.00));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
}
.timeline__title{font-weight:900;margin-bottom:10px}
.timeline__list{margin:0;padding-left:0;list-style:none;display:grid;gap:10px}
.timeline__list li{
  display:grid;
  grid-template-columns:90px 1fr;
  gap:12px;
  align-items:start;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
}
.t__year{font-weight:950}
.t__text{color:rgba(15,23,42,.82)}
.about__side{display:grid;gap:12px}

.proofbox{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 26px rgba(2,6,23,.05);
}
.proofbox__title{
  font-weight:950;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.70);
  margin-bottom:12px;
}
.proofrow{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.proofrow:last-of-type{border-bottom:0}
.proofrow__k{font-weight:900}
.proofrow__v{color:rgba(15,23,42,.78);text-align:right}
.proofbox__cta{display:flex;gap:10px;margin-top:14px;flex-wrap:wrap}

.callout{
  border-radius:var(--radius);
  padding:18px;
  border:1px solid rgba(209,26,42,.18);
  background:rgba(209,26,42,.06);
}
.callout__top{font-weight:950;margin-bottom:6px}

@media (max-width: 980px){
  .about{grid-template-columns:1fr}
  .values__grid{grid-template-columns:1fr}
  .timeline__list li{grid-template-columns:1fr}
  .proofrow{flex-direction:column;align-items:flex-start}
  .proofrow__v{text-align:left}
}
/* --- Step 5: Featured Projects (Home Preview) --- */
.section__head--split{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
}
.head-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.workgrid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(12, minmax(0, 1fr));
  gap:12px;
}
.workcard{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  min-height:220px;
  text-decoration:none;
  box-shadow:0 12px 28px rgba(2,6,23,.08);
  transform:translateY(0);
  transition:transform .16s ease, box-shadow .16s ease;
}
.workcard:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 45px rgba(2,6,23,.14);
}
.workcard img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.95) contrast(1.04);
  transform:scale(1.02);
}
.workcard__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(209,26,42,.12), transparent 55%),
    linear-gradient(180deg, rgba(2,6,23,.05), rgba(2,6,23,.72));
}
.workcard__meta{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  color:#fff;
}
.workcard__title{
  font-weight:950;
  font-size:18px;
  line-height:1.15;
  margin-bottom:4px;
  text-shadow:0 8px 18px rgba(0,0,0,.35);
}
.workcard__sub{
  font-size:13px;
  color:rgba(255,255,255,.86);
}

.workcard:nth-child(1){grid-column:span 7}
.workcard:nth-child(2){grid-column:span 5}
.workcard:nth-child(3){grid-column:span 4}
.workcard:nth-child(4){grid-column:span 4}
.workcard:nth-child(5){grid-column:span 4}
.workcard:nth-child(6){grid-column:span 12; min-height:240px}

.project-cta{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(11,18,32,.06), rgba(209,26,42,.06));
}

@media (max-width: 980px){
  .section__head--split{flex-direction:column;align-items:flex-start}
  .workgrid{grid-template-columns:1fr}
  .workcard:nth-child(1),
  .workcard:nth-child(2),
  .workcard:nth-child(3),
  .workcard:nth-child(4),
  .workcard:nth-child(5),
  .workcard:nth-child(6){grid-column:span 1}
  .project-cta{flex-direction:column;align-items:flex-start}
  .workcard{min-height:210px}
}
/* --- Multi-page Page Hero --- */
.pagehero{
  padding:54px 0 24px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at 18% 18%, rgba(209,26,42,.08), transparent 45%),
    linear-gradient(180deg, rgba(15,23,42,.03), rgba(15,23,42,0));
}
.pagehero h1{
  margin:0 0 8px;
  font-size:clamp(30px,3.4vw,44px);
  line-height:1.1;
}
.pagehero p{margin:0;max-width:70ch}
.header{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
/* --- Dropdown (Services) --- */
.dropdown{ position:relative; }

.dropdown__toggle{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  border:0;
  cursor:pointer;
  font:inherit;
}

.dropdown__chev{ font-size:12px; opacity:.8; }

.dropdown__menu{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  min-width:260px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:8px;
  display:none;
  z-index:9999;
}

.dropdown.is-open .dropdown__menu{ display:block; }

.dropdown__item{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  text-decoration:none;
  font-weight:750;
}
.dropdown__item:hover{
  background:rgba(15,23,42,.05);
}

/* Desktop: άνοιγμα και με hover (πιο premium) */
@media (hover:hover) and (pointer:fine){
  .dropdown:hover .dropdown__menu{ display:block; }
}

/* Mobile menu compatibility */
@media (max-width: 860px){
  .dropdown{ width:100%; }
  .dropdown__menu{
    position:static;
    min-width:unset;
    box-shadow:none;
    border:1px solid var(--line);
    margin-top:8px;
  }
}
.map iframe{
  width:100%;
  height:100%;
  min-height:260px;
  border:0;
  display:block;
  border-radius:16px;
}
/* ---- Service page variety blocks ---- */
.iconcards { display:grid; gap:12px; grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 900px){ .iconcards { grid-template-columns: 1fr; } }
.iconcard { border:1px solid rgba(0,0,0,.08); border-radius:16px; padding:14px; background:#fff; }
.iconcard__top { display:flex; gap:10px; align-items:center; font-weight:700; }
.iconcard__ico { width:34px; height:34px; border-radius:10px; display:grid; place-items:center; border:1px solid rgba(0,0,0,.10); }
.iconcard p { margin:8px 0 0; }

.scopegrid { display:grid; gap:12px; grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width: 900px){ .scopegrid { grid-template-columns: 1fr; } }
.scope { border:1px solid rgba(0,0,0,.08); border-radius:16px; padding:14px; background:#fff; }
.scope__title { font-weight:800; margin:0 0 8px; }
.scope ul { margin:0; padding-left:18px; }
.scope li { margin:6px 0; }

.faq { border:1px solid rgba(0,0,0,.08); border-radius:16px; background:#fff; overflow:hidden; }
.faq details { padding:14px; border-top:1px solid rgba(0,0,0,.06); }
.faq details:first-child { border-top:0; }
.faq summary { cursor:pointer; font-weight:800; list-style:none; }
.faq summary::-webkit-details-marker { display:none; }
.faq p { margin:10px 0 0; }
/* =========================================
   Premium polish (spacing + typography)
   Paste at end of styles.css
========================================= */

:root{
  --space-1: 10px;
  --space-2: 16px;
  --space-3: 22px;
  --space-4: 28px;
  --space-5: 36px;
}

/* Page hero πιο “δεμένο” */
.pagehero{
  padding: 56px 0 28px;
}
.pagehero h1{
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.pagehero .muted{
  max-width: 70ch;
}

/* Καλύτερες αποστάσεις ανά section */
.section{
  padding: 56px 0;
}
.section--cta{
  padding: 64px 0;
}

/* Panels/Feature πιο premium */
.panel, .feature{
  border-radius: 18px;
}
.panel__title{
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.panel p.muted{
  max-width: 70ch;
}

/* Badges πιο “subtle” */
.badge{
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

/* Buttons λίγο πιο “tight” */
.btn{
  border-radius: 14px;
}
.btn--lg{
  padding: 14px 18px;
}

/* Δώσε “ανάσα” στα grids */
.two{
  gap: 16px;
}
@media (min-width: 900px){
  .two{ gap: 18px; }
}

/* Μικρό refinement στα lists μέσα σε cards/panels */
.ticks li{
  margin: 10px 0;
}
.steps li{
  margin: 10px 0;
}

/* FAQ details look πιο premium */
.faq details{
  border-radius: 16px;
  overflow: hidden;
}
.faq summary{
  padding: 16px 16px;
}
.faq .faq__body{
  padding: 0 16px 16px;
}
/* =========================================
   Services dropdown: hover on desktop, click on mobile
========================================= */

/* 기본: κλειστό */
.dropdown { position: relative; }

.dropdown__menu{
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

/* mobile / click state (κρατάμε το υπάρχον is-open) */
.dropdown.is-open .dropdown__menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* desktop: άνοιγμα με hover + keyboard focus */
@media (hover: hover) and (pointer: fine){
  .dropdown:hover .dropdown__menu,
  .dropdown:focus-within .dropdown__menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* προαιρετικό: λίγο highlight στο Services όταν είναι open */
  .dropdown:hover .dropdown__toggle,
  .dropdown:focus-within .dropdown__toggle{
    opacity: 1;
  }
}
/* Hero rotating line */
.hero-rotate {
  display: inline-block;
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}

.hero-rotate.is-fading {
  opacity: 0;
  transform: translateY(2px);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-rotate { transition: none; }
  .hero-rotate.is-fading { transform: none; }
}
.hero-rotate--title{
  display:inline-block;
  margin: 0 .15em;
  padding: .08em .22em;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.14);
  transition: opacity .35s ease, transform .35s ease;
}

.hero-rotate--title.is-fading{
  opacity:0;
  transform: translateY(6px);
}

@media (prefers-reduced-motion: reduce){
  .hero-rotate--title{ transition:none; }
  .hero-rotate--title.is-fading{ transform:none; }
}
.hero-rotate{
  display:inline-block;
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}

.hero-rotate.is-fading{
  opacity:0;
  transform: translateY(8px);
}

@media (prefers-reduced-motion: reduce){
  .hero-rotate{ transition:none; }
  .hero-rotate.is-fading{ transform:none; }
}
/* --- Dropdown reliability fix --- */

/* Βεβαιώσου ότι δεν κόβεται το dropdown */
.header,
.nav,
.nav__menu {
  overflow: visible;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Menu κάτω από το κουμπί */
.dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  z-index: 9999;

  /* κράτα το transition που είχαμε */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

/* “Γέφυρα” για να ΜΗ χάνεται όταν πας με το mouse από το κουμπί στο menu */
.dropdown__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

/* Desktop hover/focus ανοίγει */
@media (hover: hover) and (pointer: fine){
  .dropdown:hover .dropdown__menu,
  .dropdown:focus-within .dropdown__menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Mobile click ανοίγει (το κρατάς από το JS με .is-open) */
.dropdown.is-open .dropdown__menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.iconcard__ico{
  display:inline-grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
  font-weight:700;
  font-size:12px;
}
.iconcard__ico{
  display:inline-grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
  font-weight:700;
  font-size:12px;
}
.iconcard__ico{
  display:inline-grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
  font-weight:700;
  font-size:12px;
}
/* --- Service pages: 1 hero photo + 3 thumbs --- */
.service-photos{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
  align-items:stretch;
}

.service-photos__main{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 12px 28px rgba(2,6,23,.08);
  text-decoration:none;
  min-height:320px;
}

.service-photos__main img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.96) contrast(1.04);
  transform:scale(1.02);
}

.service-photos__cap{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  padding:10px 12px;
  border-radius:14px;
  color:#fff;
  font-weight:850;
  font-size:13px;
  background:linear-gradient(180deg, rgba(2,6,23,.10), rgba(2,6,23,.70));
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
}

.service-photos__grid{
  display:grid;
  grid-template-rows: repeat(3, 1fr);
  gap:12px;
}

.service-photos__thumb{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 10px 22px rgba(2,6,23,.06);
  text-decoration:none;
  min-height:96px;
}

.service-photos__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.96) contrast(1.04);
}

/* hover polish */
@media (hover:hover) and (pointer:fine){
  .service-photos__main,
  .service-photos__thumb{
    transform:translateY(0);
    transition:transform .16s ease, box-shadow .16s ease;
  }
  .service-photos__main:hover,
  .service-photos__thumb:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 45px rgba(2,6,23,.14);
  }
}

/* responsive */
@media (max-width: 980px){
  .service-photos{
    grid-template-columns:1fr;
  }
  .service-photos__main{
    min-height:240px;
  }
  .service-photos__grid{
    grid-template-rows:none;
    grid-template-columns: repeat(3, 1fr);
  }
  .service-photos__thumb{
    min-height:110px;
  }
}

@media (max-width: 560px){
  .service-photos__grid{
    grid-template-columns:1fr;
  }
  .service-photos__thumb{
    min-height:140px;
  }
}
.section--tight{ padding-top: 34px; } /* αντί για 56px+ */
/* Make service hero photo shorter (less vertical space) */
.service-photos__main{
  min-height: 260px;          /* ↓ από 320px */
  max-height: 340px;          /* ασφάλεια να μη ξεφύγει */
  aspect-ratio: 16 / 9;       /* κρατά “premium” κάδρο */
}

/* Ensure images respect the fixed height/ratio */
.service-photos__main img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;    /* άλλαξε σε 50% 35% αν κόβει “κεφάλια” */
}

/* Thumbs λίγο πιο “σφιχτές” */
.service-photos__thumb{
  min-height: 84px;           /* ↓ από 96px */
}

/* Mobile: ακόμα πιο compact */
@media (max-width: 980px){
  .service-photos__main{
    min-height: 210px;
    max-height: 260px;
    aspect-ratio: 16 / 10;    /* λίγο πιο “γεμάτο” σε mobile */
  }
  .service-photos__thumb{
    min-height: 96px;
  }
}
/* --- Service gallery: compact height + no empty space --- */
.service-photos{
  --svc-h: 340px;    /* ↓ άλλαξέ το σε 260px ή 240px αν θες πιο κοντό */
  --svc-gap: 12px;

  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: var(--svc-gap);
  align-items:start;
}

.service-photos__main{
  height: var(--svc-h);
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;          /* ακυρώνει προηγούμενα aspect-ratio */
}

.service-photos__main img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.service-photos__grid{
  height: var(--svc-h);
  display:grid;
  grid-template-rows: repeat(3, 1fr);
  gap: var(--svc-gap);
}

.service-photos__thumb{
  min-height: 0;
  aspect-ratio: auto;          /* ακυρώνει προηγούμενα */
}

.service-photos__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* Mobile: stacked layout, αφήνουμε ratios αντί για fixed height */
@media (max-width: 980px){
  .service-photos{
    --svc-h: auto;
    grid-template-columns: 1fr;
  }

  .service-photos__main{
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .service-photos__grid{
    height: auto;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
  }

  .service-photos__thumb{
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px){
  .service-photos__grid{
    grid-template-columns: 1fr;
  }
  .service-photos__thumb{
    aspect-ratio: 16 / 10;
  }
}
.service-photos__grid{
  height: var(--svc-h);
  display:grid;
  grid-template-rows: 1.15fr 1fr 1fr; /* πάνω λίγο πιο “γεμάτη” */
  gap: var(--svc-gap);
}
/* FORCE: service gallery sizing (override everything) */
.service-photos { --svc-h: 600px !important; }

.service-photos__main{
  height: var(--svc-h) !important;
}

.service-photos__grid{
  height: var(--svc-h) !important;
  grid-template-rows: 1.1fr 1fr 1fr !important;
}
/* ===== Premium tweak: gallery caption + image crop (remove if you dislike) ===== */

/* 1) Caption: more subtle + premium */
.service-photos__cap{
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;

  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .01em;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);

  /* lighter overlay, still readable */
  background: linear-gradient(
    180deg,
    rgba(2,6,23,.08),
    rgba(2,6,23,.52)
  );

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 10px 26px rgba(2,6,23,.20);
}

/* 2) Crop defaults: keep subject higher in frame */
.service-photos__main img{
  object-position: 50% 35%;
}
.service-photos__thumb img{
  object-position: 50% 45%;
}

/* Optional: slightly softer zoom so it looks less “tight” */
.service-photos__main img,
.service-photos__thumb img{
  transform: scale(1.01);
}
/* ===== Extended footer (3 columns) ===== */
.footer--xl{ padding: 56px 0; }
.footerxl{
  display:grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 22px;
  align-items:start;
}

.footerxl__title{
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(15,23,42,.75);
}

.footerxl__list{
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
}

.footerxl__link{
  text-decoration: none;
  font-weight: 750;
}
.footerxl__link:hover{ text-decoration: underline; }

.footerxl__line{ margin: 0; color: rgba(15,23,42,.80); }

.footerxl__stack{
  display:grid;
  gap: 12px;
}

.footerxl__email{
  display:grid;
  gap: 6px;
}

.footerxl__smalllink{
  font-size: 12.5px;
  color: rgba(15,23,42,.70);
  text-decoration: none;
  font-weight: 800;
}
.footerxl__smalllink:hover{ text-decoration: underline; }

.footerxl__social{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footerxl__icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display:grid;
  place-items:center;
  text-decoration:none;
  background:#fff;
  font-weight: 950;
}

.footerxl__mapbox{
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 10px 26px rgba(2,6,23,.05);
  height: 260px;
}

.footerxl__mapbox iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.footerxl__bottom{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* responsive */
@media (max-width: 980px){
  .footerxl{ grid-template-columns: 1fr; }
  .footerxl__mapbox{ height: 240px; }
}
/* ===== Email chooser modal ===== */
.email-chooser__btn{
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* Modal shell */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}
.modal.is-open{ display: block; }

.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(2,6,23,.55);
}

.modal__panel{
  position: relative;
  width: min(420px, 92vw);
  margin: 10vh auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(2,6,23,.22);
  padding: 18px;
}

.modal__title{
  margin: 2px 0 14px;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}

.modal__actions{
  display: grid;
  gap: 10px;
  margin: 0 0 12px;
}

.modal__btn{
  width: 100%;
  justify-content: center;
  border-radius: 14px;
}

.modal__close{
  width: 100%;
  justify-content: center;
}

/* Small motion polish */
@media (prefers-reduced-motion: no-preference){
  .modal__panel{
    animation: pop .14s ease-out;
  }
  @keyframes pop{
    from{ transform: translateY(8px); opacity: .6; }
    to{ transform: translateY(0); opacity: 1; }
  }
}
/* Email button should align like a normal link */
.email-chooser__btn{
  text-align: left;
  justify-self: start;
  align-self: start;
  width: auto;

  color: inherit;
  text-decoration: none; /* no underline by default */
}

.email-chooser__btn:hover{
  text-decoration: underline; /* same behavior as links */
}
.email-chooser__btn{
  background:none;
  border:0;
  padding:0;
  font:inherit;
  cursor:pointer;
  text-align:left;
  width:auto;
}
.email-chooser__btn:hover{ text-decoration: underline; }
/* Footer separation (premium) */
.footer--xl{
  background: rgba(15,23,42,.03);     /* subtle tint */
  border-top: 1px solid var(--line);
}

.footerxl__mapbox,
.footerxl__icon,
.footerxl__col .btn{
  background: #fff;                   /* keep cards crisp on tinted bg */
}
/* Footer separation (A: subtle light tint) */
.footer--xl{
  background: rgba(15,23,42,.05);
  border-top: 1px solid var(--line);
}

/* Keep “cards” crisp on tinted background */
.footerxl__mapbox,
.footerxl__icon{
  background:#fff;
}
/* ---- Modal (Send options) ---- */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}
.modal.is-open{ display: block; }

.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(2,6,23,.55);
}

.modal__panel{
  position: relative;
  width: min(520px, 92vw);
  margin: 10vh auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.modal__title{ margin: 0 0 6px; }
.modal__desc{ margin: 0 0 12px; }

.modal__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

@media (max-width: 520px){
  .modal__panel{ margin: 16vh auto; }
  .modal__actions .btn{ width: 100%; }
}
.about-photo{
  margin: 18px 0;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}

.about-photo img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.about-photo figcaption{
  padding: 10px 14px;
  border-top: 1px solid rgba(15,23,42,.08);
}

@media (max-width: 720px){
  .about-photo img{ height: 200px; }
}
/* About photo: show full image (no crop) */
.aboutphoto__img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* important */
  background: #fff;    /* αν μείνουν κενά δεξιά/αριστερά */
}
/* ABOUT photo: force NO CROP even if other rules use cover/absolute */
.aboutphoto{
  height: auto !important;
  aspect-ratio: auto !important;
}

.aboutphoto__img{
  display:block;
  width:100%;
  height:420px;
  object-fit:cover;
  object-position:center;
}

@media (max-width: 900px){
  .aboutphoto__img{ height:320px; }
}

@media (max-width: 560px){
  .aboutphoto__img{ height:240px; }
}
.sidephoto{
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
  margin-bottom: 14px;
}

.sidephoto__img{
  display:block;
  width:100%;
  height:auto;          /* για να ΜΗΝ κόβεται */
  object-fit: contain;  /* extra safe */
}

.sidephoto figcaption{
  padding: 10px 14px;
  border-top: 1px solid rgba(15,23,42,.08);
}
.about-sidephoto{
  margin: 0 0 16px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}

.about-sidephoto img{
  display: block;
  width: 100%;
  height: 320px;        /* μπορείς να το αλλάξεις σε 280/360 */
  object-fit: cover;    /* κόβει σωστά, χωρίς άσπρα κενά */
  object-position: center;
}

@media (max-width: 900px){
  .about-sidephoto img{ height: 260px; }
}
/* About sidebar photo - fills the empty white space */
.about-side-photo{
  margin-top: 16px;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
}

.about-side-photo__img{
  display: block;
  width: 100%;
  height: auto;          /* σημαντικό: να ΜΗΝ κόβεται */
  object-fit: cover;
}
/* ===== STATS BAND (curved + photo background like client) ===== */
/* =========================
   STATS BAND (Client-like)
========================= */

.statsband{
  /* 1) ΜΕΓΑΛΟ band (η φωτογραφία να φαίνεται “τεράστια”) */
  --band-pad-y: 130px;        /* ↑/↓ το ύψος της ενότητας */
  --curve-h: 200px;          /* ↑/↓ πόσο “βαθιά” η καμπύλη */
  --curve-push: 170px;       /* πόσο έξω πάει το curve (αρνητικό top/bottom) */

  position: relative;
  padding: var(--band-pad-y) 0;
  overflow: hidden;

  /* Στου πελάτη μοιάζει full-bleed / όχι “κουτί” */
  border: 0;
  border-radius: 0;
  background: #fff;
}

/* Background photo layer */
.statsband__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../img/stats-bg.jpg") center/cover no-repeat;

  /* λίγο πιο “ζωντανό” όπως του πελάτη */
  filter: saturate(1.05) contrast(1.08);
}

/* Light overlay για readability (όχι πολύ άσπρο) */
.statsband__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.42),
    rgba(255,255,255,.14)
  );
}

/* Curves πάνω/κάτω (έντονα) */
.statsband::before,
.statsband::after{
  content:"";
  position:absolute;
  left:50%;
  width:140%;
  height: var(--curve-h);
  transform: translateX(-50%);
  background:#fff;
  border-radius: 9999px;
  z-index: 1;
  pointer-events:none;
}
.statsband::before{ top: calc(var(--curve-push) * -1); }
.statsband::after{ bottom: calc(var(--curve-push) * -1); }

/* Content πάνω από bg/curves */
.statsband .container{
  position: relative;
  z-index: 2;
}

/* Cards grid (όπως το έχεις) */
.statsgrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

/* Glass cards */
.statsband .stat{
  padding: 22px 22px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 12px 30px rgba(2,6,23,.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Responsive */
@media (max-width: 980px){
  .statsgrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .statsband{
    --band-pad-y: 64px;
    --curve-h: 200px;
    --curve-push: 150px;
  }
}
@media (max-width: 520px){
  .statsband{
    --band-pad-y: 54px;
    --curve-h: 180px;
    --curve-push: 130px;
  }
}




/* Grid */
.statsgrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

/* Cards */
.statsband .stat{
  padding: 22px 22px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.70);
  box-shadow: 0 12px 30px rgba(2,6,23,.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.statsband .stat__num{
  font-size: clamp(34px, 3.2vw, 64px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1d4ed8;
}

.statsband .stat__label{
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(15,23,42,.72);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 980px){
  .statsgrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .statsband{ padding: 48px 0; }
  .statsband::before,
  .statsband::after{
    height: 140px;
    top: -115px;
    bottom: -115px;
  }
}
/* ===== Projects page polish ===== */
.projectshead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.projectsfilters{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.pfilter{
  border:1px solid var(--line);
  background:#fff;
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
}
.pfilter:hover{ background:rgba(15,23,42,.04); }
.pfilter.is-active{
  background:rgba(209,26,42,.10);
  border-color:rgba(209,26,42,.20);
}

/* Make project grid uniform (override the home nth-child spans) */
.workgrid--projects .workcard{
  grid-column: span 4 !important;
  min-height: 240px;
}
@media (max-width: 980px){
  .workgrid--projects{ grid-template-columns: 1fr; }
  .workgrid--projects .workcard{ grid-column: span 12 !important; min-height: 220px; }
}

/* ===== Gallery modal (lightbox) ===== */
.gmodal{
  position:fixed;
  inset:0;
  display:none;
  z-index:99999;
}
.gmodal.is-open{ display:block; }

.gmodal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,6,23,.70);
}

.gmodal__panel{
  position:relative;
  width:min(980px, 92vw);
  margin: 6vh auto 0;
  border-radius: 18px;
  overflow:hidden;
  background:#0b1220;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
}

.gmodal__figure{ margin:0; position:relative; }
.gmodal__figure img{
  width:100%;
  height:min(70vh, 720px);
  object-fit:contain;
  display:block;
  background:#0b1220;
}

.gmodal__cap{
  padding:12px 14px;
  background:linear-gradient(180deg, rgba(11,18,32,.0), rgba(11,18,32,.75));
  position:absolute;
  left:0; right:0; bottom:0;
  color:#fff;
}
.gmodal__title{ font-weight:900; }
.gmodal__sub{ opacity:.85; font-size:13px; margin-top:2px; }

.gmodal__close{
  position:absolute;
  top:10px; right:12px;
  width:40px; height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:24px;
  cursor:pointer;
  z-index:2;
}

.gmodal__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:30px;
  cursor:pointer;
  z-index:2;
}
.gmodal__nav--prev{ left:12px; }
.gmodal__nav--next{ right:12px; }

@media (max-width: 520px){
  .gmodal__figure img{ height: 62vh; }
}
/* === Page fade (multi-page) === */
html { background: var(--paper); }

body{
  opacity: 0;
  transition: opacity .18s ease;
}

body.is-loaded{ opacity: 1; }
body.is-leaving{ opacity: 0; }

@media (prefers-reduced-motion: reduce){
  body{ transition: none; }
}
/* === Page fade (safe) === */
body{ opacity: 1; }

/* Fade ενεργό ΜΟΝΟ αν υπάρχει JS */
html.js body{
  opacity: 0;
  transition: opacity .18s ease;
}

html.js body.is-loaded{ opacity: 1; }
html.js body.is-leaving{ opacity: 0; }

@media (prefers-reduced-motion: reduce){
  html.js body{ transition: none; }
}
/* === Reveal on scroll === */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
  will-change: opacity, transform;
}

.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* Optional: μικρό stagger σε grids */
.reveal-stagger > *{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal-stagger.is-in > *{
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-in > *:nth-child(2){ transition-delay: .05s; }
.reveal-stagger.is-in > *:nth-child(3){ transition-delay: .10s; }
.reveal-stagger.is-in > *:nth-child(4){ transition-delay: .15s; }
.reveal-stagger.is-in > *:nth-child(5){ transition-delay: .20s; }
.reveal-stagger.is-in > *:nth-child(6){ transition-delay: .25s; }

@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal-stagger > *{
    transition: none;
    transform: none;
    opacity: 1;
  }
}
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
  will-change: opacity, transform;
}

.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > *{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal-stagger.is-in > *{
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-in > *:nth-child(2){ transition-delay: .05s; }
.reveal-stagger.is-in > *:nth-child(3){ transition-delay: .10s; }
.reveal-stagger.is-in > *:nth-child(4){ transition-delay: .15s; }
.reveal-stagger.is-in > *:nth-child(5){ transition-delay: .20s; }
.reveal-stagger.is-in > *:nth-child(6){ transition-delay: .25s; }

@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal-stagger > *{
    transition: none;
    transform: none;
    opacity: 1;
  }
}
/* ===== Header logo: bigger + shifted left without breaking nav ===== */

/* κρατάμε σταθερό “slot” για το brand (ώστε να μην πιέζει το nav) */
.header .brand{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 380px;      /* <-- πόσο χώρο κρατάει αριστερά */
  max-width: 360px;
  min-width: 320px;
  margin-left: -28px;   /* <-- μετακίνηση αριστερά */
}

/* logo μεγαλύτερο + άσπρο background */
.header .brand__logo{
  width: 190px;          /* <-- μέγεθος logo */
  height: 92px;         /* <-- μέγεθος logo */
  object-fit: contain;
  background: #fff;     /* <-- άσπρο πίσω */
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.10);
}

/* το nav να κάθεται δεξιά κανονικά */
.header .nav{
  margin-left: auto;
}

/* responsive: σε μικρές οθόνες μην “τρώνει” τόσο χώρο */
@media (max-width: 980px){
  .header .brand{
    flex-basis: auto;
    max-width: none;
    min-width: 0;
    margin-left: 0;
  }
  .header .brand__logo{
    width: 68px;
    height: 46px;
    padding: 5px;
  }
}
/* =========================================
   OVERRIDE: Reveal on scroll (final)
   Paste this at the VERY END of styles.css
========================================= */

/* ===== PAGE FADE (SAFE) ===== */
body{ opacity: 1; }

html.js body{
  opacity: 0;
  transition: opacity .05s ease;
}

html.js body.is-loaded{ opacity: 1; }
html.js body.is-leaving{ opacity: 0; }

@media (prefers-reduced-motion: reduce){
  html.js body{ transition: none; }
}
/* ===== FIX: remove image blur on home projects ===== */
.workcard img{
  transform: none !important;   /* σταματά το scale που “μαλακώνει” */
  filter: none !important;      /* κόβει το contrast/saturate blur feeling */
  image-rendering: auto;
  backface-visibility: hidden;
}
/* ===== FIX: image blur on work cards (HOME + PROJECTS) ===== */

/* Μην κάνεις zoom με transform στο img — συχνά θολώνει */
.workcard img{
  transform: none !important;
  filter: none !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: auto;
}

/* Κράτα το “premium” hover χωρίς να θολώνει η εικόνα */
@media (hover:hover) and (pointer:fine){
  .workcard{
    transform: translateZ(0);
    will-change: transform;
  }
  .workcard:hover{
    transform: translateY(-2px);
  }

  /* αν θες μικρό zoom στο hover, κάν’ το στο container, όχι στο img */
  .workcard:hover img{
    transform: scale(1.03) !important;
    transition: transform .25s ease;
  }
  .workcard img{
    transition: transform .25s ease;
  }
}

/* Αν έχεις overlay που βαραίνει πολύ, κράτα το πιο “καθαρό” */
.workcard__overlay{
  background:
    radial-gradient(circle at 20% 20%, rgba(209,26,42,.10), transparent 58%),
    linear-gradient(180deg, rgba(2,6,23,.04), rgba(2,6,23,.66)) !important;
}
.workcard img{
  filter: none !important;
  transform: none !important;
}
/* ===== Page fade (global, safe) ===== */
body{ opacity: 1; }

html.js body{
  opacity: 0;
  transition: opacity .15s ease;
}
html.js body.is-loaded{ opacity: 1; }
html.js body.is-leaving{ opacity: 0; }

@media (prefers-reduced-motion: reduce){
  html.js body{ transition: none; }
}
/* === Image crispness override (premium) === */
.hero__media img,
.workcard img,
.service-photos__main img,
.service-photos__thumb img{
  filter: none !important;          /* βγάζει το softening */
  transform: none !important;       /* βγάζει το extra resample */
  image-rendering: auto;
}

/* προαιρετικό: λίγο πιο “καθαρό” overlay */
.workcard__overlay{
  background:
    radial-gradient(circle at 20% 20%, rgba(209,26,42,.10), transparent 55%),
    linear-gradient(180deg, rgba(2,6,23,.04), rgba(2,6,23,.68)) !important;
}
/* ================================
   HOME/PROJECT IMAGES: CRISP + PREMIUM META
   Paste at END of styles.css
================================ */

/* 1) Κόβουμε ό,τι “μαλακώνει” τις εικόνες (filters + scale) */
.hero__media img,
.workcard img,
.service-photos__main img,
.service-photos__thumb img{
  filter: none !important;
  transform: none !important;
}

/* 2) Κρατάμε ωραίο “premium” overlay χωρίς να θολώνει η φωτο */
.workcard__overlay{
  background:
    radial-gradient(circle at 20% 20%, rgba(209,26,42,.10), transparent 55%),
    linear-gradient(180deg, rgba(2,6,23,.04), rgba(2,6,23,.70)) !important;
}

/* 3) Premium blur ΜΟΝΟ πίσω από το κείμενο (όχι στην εικόνα) */
.workcard__meta{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(11,18,32,.22);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* 4) Μικρό text polish */
.workcard__title{ text-shadow: 0 10px 22px rgba(0,0,0,.35); }
.workcard__sub{ text-shadow: 0 10px 22px rgba(0,0,0,.30); }
/* Fix: Services (button) να έχει ίδιο weight με τα υπόλοιπα nav links */
.dropdown__toggle{
  font: inherit;        /* μπορείς να το κρατήσεις */
  font-weight: 650;     /* <-- αυτό λείπει */
}
/* =========================================================
   FINAL OVERRIDES (brand colors + nav weight) — paste at END
   ========================================================= */

/* 1) Brand colors from logo (blue + red) */
:root{
  --brand-blue: #1d4ed8;      /* logo blue (keep or tweak) */
  --brand-red:  #d11a2a;      /* logo red (already your accent) */

  --accent: var(--brand-red);
  --primary: var(--brand-blue);
}

/* 2) Make Services look like the rest of nav links (bold + same padding) */
.dropdown__toggle{
  font: inherit;
  font-weight: 650;        /* FIX: ήταν normal, γι’ αυτό δεν ήταν bold */
  padding: 10px 10px;      /* match .nav__link */
  border-radius: 12px;
  text-decoration: none;
}

/* Optional: same hover background as nav links */
.dropdown__toggle:hover{
  background: rgba(15,23,42,.05);
}

/* If you ever add .is-active on Services toggle, match active style */
.dropdown__toggle.is-active{
  background: rgba(209,26,42,.08);
}

/* 3) Subtle brand behavior (no big visual change) */
a:hover{
  color: var(--primary);
}

/* 4) Keep your hero red glow tied to accent variable */
.hero__shade{
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 52%),
    linear-gradient(90deg, rgba(11,18,32,.74), rgba(11,18,32,.18));
}

/* Fallback if color-mix unsupported (safe) */
@supports not (color-mix(in srgb, #000 10%, transparent)){
  .hero__shade{
    background:
      radial-gradient(circle at 20% 20%, rgba(209,26,42,.18), transparent 52%),
      linear-gradient(90deg, rgba(11,18,32,.74), rgba(11,18,32,.18));
  }
}
/* FORCE Services weight */
.header .nav__menu .dropdown__toggle,
.header .dropdown .dropdown__toggle,
button.dropdown__toggle,
a.dropdown__toggle{
  font-weight: 650 !important;
}
/* ================================
   FIX: Services hover color like the other header links
   Paste at VERY END of styles.css
================================ */

/* remove default button styling that μπορεί να “σπάει” hover behavior */
.nav__menu .dropdown__toggle{
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
}

/* κάνε hover/focus ίδιο για ΟΛΑ (a + button) */
.nav__menu a.nav__link:hover,
.nav__menu a.nav__link:focus-visible,
.nav__menu button.nav__link:hover,
.nav__menu button.nav__link:focus-visible{
  color: #1d4ed8;                 /* το ίδιο μπλε που βλέπεις στα άλλα */
  background: rgba(15,23,42,.05); /* ίδιο “chip” background */
}

/* κράτα και active styling να φαίνεται σωστά */
.nav__menu .dropdown__toggle.is-active{
  background: rgba(209,26,42,.08);
}
/* Headings underline polish (optional) */
.pagehero h1,
.section__head h2{
  position: relative;
  padding-bottom: 10px;
}

.pagehero h1::after,
.section__head h2::after{
  content:"";
  display:block;
  width: 72px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(209,26,42,.90); /* ίδιο κόκκινο, λίγο πιο soft */
}
/* Remove underline ONLY from the "Project Gallery" heading (projects page) */
.projectshead h2::after{
  display:none !important;
}
.map__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.map__actions .btn{
  padding:10px 14px;
  border-radius:14px;
}
.map__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.map__actions .btn{
  padding:10px 14px;
  border-radius:14px;
}
/* Footer map action buttons */
.map__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

/* Optional: full clickable overlay on mobile */
.map__tap{
  position:absolute;
  inset:0;
  z-index:5;
  /* Αν θες να μπορείς να κάνεις pinch/zoom στον χάρτη στο mobile, σχολίασε το overlay */
  background: transparent;
}
.map__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

/* optional overlay tap on mobile */
.map__tap{
  position:absolute;
  inset:0;
  z-index:5;
  background: transparent;
}
.map__actions{
  display:flex;
  justify-content:flex-start;
  gap:10px;
  margin-top:12px;
}
/* =========================================================
   EXTERIOR-MEDICS STYLE OVERRIDE
   paste at the VERY END of styles.css
========================================================= */

/* ---------- overall polish ---------- */
:root{
  --muted:#5f6b7a;
  --line:rgba(15,23,42,.10);
  --brand-blue:#173b67;
  --brand-red:#d71920;
  --shadow-soft:0 8px 22px rgba(2,6,23,.05);
  --shadow-med:0 16px 36px rgba(2,6,23,.08);
}

/* ---------- header ---------- */
.header{
  position:sticky !important;
  top:0 !important;
  z-index:9999 !important;
  background:rgba(255,255,255,.97) !important;
  backdrop-filter:blur(10px) !important;
  -webkit-backdrop-filter:blur(10px) !important;
  border-bottom:1px solid rgba(15,23,42,.08) !important;
  box-shadow:0 1px 0 rgba(15,23,42,.03) !important;
}

.header__inner{
  min-height:78px !important;
  padding:8px 0 !important;
  gap:14px !important;
}

.header .brand{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  flex:0 0 auto !important;
  min-width:0 !important;
  max-width:none !important;
  margin:0 !important;
}

.header .brand__logo{
  width:64px !important;
  height:64px !important;
  object-fit:contain !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  padding:0 !important;
  box-shadow:none !important;
}

.brand__name{
  font-size:15px !important;
  font-weight:850 !important;
  line-height:1.04 !important;
  letter-spacing:-.02em !important;
  color:#111827 !important;
}

.brand__sub{
  font-size:10.5px !important;
  line-height:1.2 !important;
  color:rgba(15,23,42,.62) !important;
  white-space:nowrap !important;
}

/* ---------- nav ---------- */
.header .nav,
.nav{
  margin-left:auto !important;
  overflow:visible !important;
}

.nav__menu{
  gap:4px !important;
  overflow:visible !important;
}

.nav__link,
.dropdown__toggle,
.header .nav__menu .dropdown__toggle,
.header .dropdown .dropdown__toggle,
button.dropdown__toggle,
a.dropdown__toggle{
  min-height:42px !important;
  padding:10px 12px !important;
  border-radius:10px !important;
  font-size:14px !important;
  font-weight:800 !important;
  color:#111827 !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  text-decoration:none !important;
  transition:background .16s ease,color .16s ease !important;
}

.nav__link:hover,
.dropdown__toggle:hover{
  background:rgba(15,23,42,.05) !important;
  color:#111827 !important;
}

.nav__link.is-active,
.dropdown__toggle.is-active{
  background:rgba(215,25,32,.08) !important;
}

/* ---------- dropdown ---------- */
.dropdown{
  position:relative !important;
}

.dropdown__menu{
  background:#fff !important;
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:14px !important;
  box-shadow:0 24px 56px rgba(2,6,23,.12) !important;
  padding:8px !important;
  min-width:270px !important;
  top:calc(100% + 8px) !important;
}

.dropdown__item{
  padding:11px 12px !important;
  border-radius:10px !important;
  font-weight:750 !important;
  color:#111827 !important;
}

.dropdown__item:hover{
  background:rgba(15,23,42,.05) !important;
}

/* ---------- buttons ---------- */
.btn{
  min-height:46px !important;
  padding:12px 16px !important;
  border-radius:10px !important;
  font-weight:800 !important;
  letter-spacing:-.01em !important;
}

.btn--lg{
  min-height:50px !important;
  padding:14px 18px !important;
  border-radius:12px !important;
}

.btn--primary{
  background:var(--brand-red) !important;
  color:#fff !important;
  border-color:var(--brand-red) !important;
  box-shadow:0 12px 24px rgba(215,25,32,.18) !important;
}

.btn--primary:hover{
  background:#bf151b !important;
  border-color:#bf151b !important;
}

.btn--ghost{
  background:#fff !important;
  border-color:rgba(15,23,42,.10) !important;
  color:#111827 !important;
}

/* ---------- hero ---------- */
.hero{
  min-height:68vh !important;
  background:#0f172a !important;
}

.hero__media img{
  filter:none !important;
  transform:none !important;
}

.hero__shade{
  background:
    linear-gradient(90deg,
      rgba(15,23,42,.82) 0%,
      rgba(15,23,42,.62) 32%,
      rgba(15,23,42,.30) 62%,
      rgba(15,23,42,.08) 100%) !important;
}

.hero__content{
  max-width:760px !important;
  padding:72px 0 62px !important;
}

.hero__title{
  font-size:clamp(40px,5vw,64px) !important;
  line-height:1.02 !important;
  letter-spacing:-.04em !important;
  margin:14px 0 10px !important;
}

.hero__lead{
  font-size:18px !important;
  line-height:1.6 !important;
  max-width:54ch !important;
}

.pill{
  background:rgba(255,255,255,.10) !important;
  border:1px solid rgba(255,255,255,.14) !important;
}

.pill__dot{
  background:var(--brand-red) !important;
}

/* ---------- headings / sections ---------- */
.section{
  padding:56px 0 !important;
}

.section__head h2{
  font-size:clamp(30px,3vw,42px) !important;
  line-height:1.08 !important;
  letter-spacing:-.025em !important;
}

.section__head p{
  font-size:16px !important;
  line-height:1.6 !important;
  color:var(--muted) !important;
}

.pagehero{
  padding:44px 0 22px !important;
  border-bottom:1px solid rgba(15,23,42,.08) !important;
  background:
    linear-gradient(180deg, rgba(23,59,103,.06), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(15,23,42,.02), rgba(255,255,255,0)) !important;
}

.pagehero h1{
  font-size:clamp(32px,4vw,46px) !important;
  line-height:1.05 !important;
  letter-spacing:-.03em !important;
}

/* ---------- cards / panels ---------- */
.card,
.panel,
.feature,
.contact__form,
.infocard,
.story,
.values,
.proofbox,
.areas,
.iconcard,
.scope,
.faq{
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:14px !important;
  box-shadow:var(--shadow-soft) !important;
}

.card,
.panel,
.feature,
.contact__form,
.infocard,
.story,
.values,
.proofbox,
.areas,
.iconcard,
.scope{
  background:#fff !important;
}

.card{
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease !important;
}

.card:hover{
  transform:translateY(-3px) !important;
  box-shadow:var(--shadow-med) !important;
  border-color:rgba(23,59,103,.16) !important;
}

.card__icon{
  background:rgba(23,59,103,.08) !important;
  border:1px solid rgba(23,59,103,.12) !important;
  color:var(--brand-blue) !important;
}

/* ---------- hero proof ---------- */
.proof__item{
  background:#fff !important;
  border:1px solid rgba(15,23,42,.08) !important;
  color:#111827 !important;
}

.proof__lbl{
  color:var(--muted) !important;
}

/* ---------- projects ---------- */
.workcard{
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:14px !important;
  box-shadow:var(--shadow-soft) !important;
}

.workcard img{
  filter:none !important;
  transform:none !important;
}

.workcard__overlay{
  background:
    linear-gradient(180deg, rgba(15,23,42,.00), rgba(15,23,42,.42)) !important;
}

.workcard__meta{
  background:rgba(255,255,255,.94) !important;
  color:#111827 !important;
  border:1px solid rgba(255,255,255,.7) !important;
  border-radius:12px !important;
  box-shadow:0 10px 20px rgba(15,23,42,.08) !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}

.workcard__title,
.workcard__sub{
  text-shadow:none !important;
}

.workcard__sub{
  color:var(--muted) !important;
}

/* ---------- forms ---------- */
input,
textarea,
select,
.field input,
.field select,
.field textarea{
  border:1px solid rgba(15,23,42,.12) !important;
  border-radius:10px !important;
}

input:focus,
textarea:focus,
select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:rgba(23,59,103,.34) !important;
  box-shadow:0 0 0 4px rgba(23,59,103,.08) !important;
}

/* ---------- footer ---------- */
.footer--xl{
  background:#f5f7fa !important;
  border-top:1px solid rgba(15,23,42,.08) !important;
}

.footerxl{
  gap:24px !important;
}

.footerxl__title{
  font-size:12px !important;
  font-weight:900 !important;
  letter-spacing:.12em !important;
  color:rgba(15,23,42,.58) !important;
}

.footerxl__icon,
.footerxl__mapbox{
  background:#fff !important;
}

.footerxl__mapbox{
  border-radius:18px !important;
  box-shadow:0 10px 26px rgba(2,6,23,.05) !important;
}

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .header .brand{
    margin-left:0 !important;
    min-width:0 !important;
    max-width:none !important;
    flex-basis:auto !important;
  }

  .header .brand__logo{
    width:68px !important;
    height:46px !important;
    padding:5px !important;
  }

  .footerxl{
    grid-template-columns:1fr !important;
  }
}

@media (max-width: 920px){
  .nav__menu{
    width:min(380px,92vw) !important;
    border-radius:16px !important;
    box-shadow:0 24px 56px rgba(2,6,23,.12) !important;
  }

  .nav__link,
  .dropdown__toggle{
    width:100% !important;
    justify-content:space-between !important;
  }

  .dropdown{
    width:100% !important;
  }

  .dropdown__menu{
    position:static !important;
    min-width:unset !important;
    margin-top:8px !important;
    box-shadow:none !important;
  }
}

@media (max-width: 640px){
  .header__inner{
    min-height:70px !important;
  }

  .brand__logo{
    width:52px !important;
    height:52px !important;
  }

  .hero__content{
    padding:48px 0 40px !important;
  }

  .hero__title{
    font-size:clamp(32px,8vw,42px) !important;
  }
}
/* =========================================================
   EXTERIOR-MEDICS STYLE OVERRIDE
   paste at the VERY END of styles.css
========================================================= */

/* ---------- overall polish ---------- */
:root{
  --muted:#5f6b7a;
  --line:rgba(15,23,42,.10);
  --brand-blue:#173b67;
  --brand-red:#d71920;
  --shadow-soft:0 8px 22px rgba(2,6,23,.05);
  --shadow-med:0 16px 36px rgba(2,6,23,.08);
}

/* ---------- header ---------- */
.header{
  position:sticky !important;
  top:0 !important;
  z-index:9999 !important;
  background:rgba(255,255,255,.97) !important;
  backdrop-filter:blur(10px) !important;
  -webkit-backdrop-filter:blur(10px) !important;
  border-bottom:1px solid rgba(15,23,42,.08) !important;
  box-shadow:0 1px 0 rgba(15,23,42,.03) !important;
}

.header__inner{
  min-height:78px !important;
  padding:8px 0 !important;
  gap:14px !important;
}

.header .brand{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  flex:0 0 auto !important;
  min-width:0 !important;
  max-width:none !important;
  margin:0 !important;
}

.header .brand__logo{
  width:64px !important;
  height:64px !important;
  object-fit:contain !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  padding:0 !important;
  box-shadow:none !important;
}

.brand__name{
  font-size:15px !important;
  font-weight:850 !important;
  line-height:1.04 !important;
  letter-spacing:-.02em !important;
  color:#111827 !important;
}

.brand__sub{
  font-size:10.5px !important;
  line-height:1.2 !important;
  color:rgba(15,23,42,.62) !important;
  white-space:nowrap !important;
}

/* ---------- nav ---------- */
.header .nav,
.nav{
  margin-left:auto !important;
  overflow:visible !important;
}

.nav__menu{
  gap:4px !important;
  overflow:visible !important;
}

.nav__link,
.dropdown__toggle,
.header .nav__menu .dropdown__toggle,
.header .dropdown .dropdown__toggle,
button.dropdown__toggle,
a.dropdown__toggle{
  min-height:42px !important;
  padding:10px 12px !important;
  border-radius:10px !important;
  font-size:14px !important;
  font-weight:800 !important;
  color:#111827 !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  text-decoration:none !important;
  transition:background .16s ease,color .16s ease !important;
}

.nav__link:hover,
.dropdown__toggle:hover{
  background:rgba(15,23,42,.05) !important;
  color:#111827 !important;
}

.nav__link.is-active,
.dropdown__toggle.is-active{
  background:rgba(215,25,32,.08) !important;
}

/* ---------- dropdown ---------- */
.dropdown{
  position:relative !important;
}

.dropdown__menu{
  background:#fff !important;
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:14px !important;
  box-shadow:0 24px 56px rgba(2,6,23,.12) !important;
  padding:8px !important;
  min-width:270px !important;
  top:calc(100% + 8px) !important;
}

.dropdown__item{
  padding:11px 12px !important;
  border-radius:10px !important;
  font-weight:750 !important;
  color:#111827 !important;
}

.dropdown__item:hover{
  background:rgba(15,23,42,.05) !important;
}

/* ---------- buttons ---------- */
.btn{
  min-height:46px !important;
  padding:12px 16px !important;
  border-radius:10px !important;
  font-weight:800 !important;
  letter-spacing:-.01em !important;
}

.btn--lg{
  min-height:50px !important;
  padding:14px 18px !important;
  border-radius:12px !important;
}

.btn--primary{
  background:var(--brand-red) !important;
  color:#fff !important;
  border-color:var(--brand-red) !important;
  box-shadow:0 12px 24px rgba(215,25,32,.18) !important;
}

.btn--primary:hover{
  background:#bf151b !important;
  border-color:#bf151b !important;
}

.btn--ghost{
  background:#fff !important;
  border-color:rgba(15,23,42,.10) !important;
  color:#111827 !important;
}

/* ---------- hero ---------- */
.hero{
  min-height:68vh !important;
  background:#0f172a !important;
}

.hero__media img{
  filter:none !important;
  transform:none !important;
}

.hero__shade{
  background:
    linear-gradient(90deg,
      rgba(15,23,42,.82) 0%,
      rgba(15,23,42,.62) 32%,
      rgba(15,23,42,.30) 62%,
      rgba(15,23,42,.08) 100%) !important;
}

.hero__content{
  max-width:760px !important;
  padding:72px 0 62px !important;
}

.hero__title{
  font-size:clamp(40px,5vw,64px) !important;
  line-height:1.02 !important;
  letter-spacing:-.04em !important;
  margin:14px 0 10px !important;
}

.hero__lead{
  font-size:18px !important;
  line-height:1.6 !important;
  max-width:54ch !important;
}

.pill{
  background:rgba(255,255,255,.10) !important;
  border:1px solid rgba(255,255,255,.14) !important;
}

.pill__dot{
  background:var(--brand-red) !important;
}

/* ---------- headings / sections ---------- */
.section{
  padding:56px 0 !important;
}

.section__head h2{
  font-size:clamp(30px,3vw,42px) !important;
  line-height:1.08 !important;
  letter-spacing:-.025em !important;
}

.section__head p{
  font-size:16px !important;
  line-height:1.6 !important;
  color:var(--muted) !important;
}

.pagehero{
  padding:44px 0 22px !important;
  border-bottom:1px solid rgba(15,23,42,.08) !important;
  background:
    linear-gradient(180deg, rgba(23,59,103,.06), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(15,23,42,.02), rgba(255,255,255,0)) !important;
}

.pagehero h1{
  font-size:clamp(32px,4vw,46px) !important;
  line-height:1.05 !important;
  letter-spacing:-.03em !important;
}

/* ---------- cards / panels ---------- */
.card,
.panel,
.feature,
.contact__form,
.infocard,
.story,
.values,
.proofbox,
.areas,
.iconcard,
.scope,
.faq{
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:14px !important;
  box-shadow:var(--shadow-soft) !important;
}

.card,
.panel,
.feature,
.contact__form,
.infocard,
.story,
.values,
.proofbox,
.areas,
.iconcard,
.scope{
  background:#fff !important;
}

.card{
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease !important;
}

.card:hover{
  transform:translateY(-3px) !important;
  box-shadow:var(--shadow-med) !important;
  border-color:rgba(23,59,103,.16) !important;
}

.card__icon{
  background:rgba(23,59,103,.08) !important;
  border:1px solid rgba(23,59,103,.12) !important;
  color:var(--brand-blue) !important;
}

/* ---------- hero proof ---------- */
.proof__item{
  background:#fff !important;
  border:1px solid rgba(15,23,42,.08) !important;
  color:#111827 !important;
}

.proof__lbl{
  color:var(--muted) !important;
}

/* ---------- projects ---------- */
.workcard{
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:14px !important;
  box-shadow:var(--shadow-soft) !important;
}

.workcard img{
  filter:none !important;
  transform:none !important;
}

.workcard__overlay{
  background:
    linear-gradient(180deg, rgba(15,23,42,.00), rgba(15,23,42,.42)) !important;
}

.workcard__meta{
  background:rgba(255,255,255,.94) !important;
  color:#111827 !important;
  border:1px solid rgba(255,255,255,.7) !important;
  border-radius:12px !important;
  box-shadow:0 10px 20px rgba(15,23,42,.08) !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}

.workcard__title,
.workcard__sub{
  text-shadow:none !important;
}

.workcard__sub{
  color:var(--muted) !important;
}

/* ---------- forms ---------- */
input,
textarea,
select,
.field input,
.field select,
.field textarea{
  border:1px solid rgba(15,23,42,.12) !important;
  border-radius:10px !important;
}

input:focus,
textarea:focus,
select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:rgba(23,59,103,.34) !important;
  box-shadow:0 0 0 4px rgba(23,59,103,.08) !important;
}

/* ---------- footer ---------- */
.footer--xl{
  background:#f5f7fa !important;
  border-top:1px solid rgba(15,23,42,.08) !important;
}

.footerxl{
  gap:24px !important;
}

.footerxl__title{
  font-size:12px !important;
  font-weight:900 !important;
  letter-spacing:.12em !important;
  color:rgba(15,23,42,.58) !important;
}

.footerxl__icon,
.footerxl__mapbox{
  background:#fff !important;
}

.footerxl__mapbox{
  border-radius:18px !important;
  box-shadow:0 10px 26px rgba(2,6,23,.05) !important;
}

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .header .brand{
    margin-left:0 !important;
    min-width:0 !important;
    max-width:none !important;
    flex-basis:auto !important;
  }

  .header .brand__logo{
    width:68px !important;
    height:46px !important;
    padding:5px !important;
  }

  .footerxl{
    grid-template-columns:1fr !important;
  }
}

@media (max-width: 920px){
  .nav__menu{
    width:min(380px,92vw) !important;
    border-radius:16px !important;
    box-shadow:0 24px 56px rgba(2,6,23,.12) !important;
  }

  .nav__link,
  .dropdown__toggle{
    width:100% !important;
    justify-content:space-between !important;
  }

  .dropdown{
    width:100% !important;
  }

  .dropdown__menu{
    position:static !important;
    min-width:unset !important;
    margin-top:8px !important;
    box-shadow:none !important;
  }
}

@media (max-width: 640px){
  .header__inner{
    min-height:70px !important;
  }

  .brand__logo{
    width:52px !important;
    height:52px !important;
  }

  .hero__content{
    padding:48px 0 40px !important;
  }

  .hero__title{
    font-size:clamp(32px,8vw,42px) !important;
  }
}
/* =========================================================
   SMALL UI POLISH (ExteriorMedics style)
   APPEND THIS AT THE END OF YOUR styles.css
========================================================= */

/* ---------- HEADER refinement ---------- */
.header{
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(15,23,42,.08);
}

.header__inner{
  min-height:74px;
}

/* nav links λίγο πιο clean */
.nav__link,
.dropdown__toggle{
  font-weight:800;
  letter-spacing:-.01em;
  border-radius:10px;
}

/* ίδιο hover feeling με exterior medics */
.nav__link:hover,
.dropdown__toggle:hover{
  background:rgba(15,23,42,.05);
}


/* ---------- BUTTON polish ---------- */

.btn{
  border-radius:10px;
  font-weight:800;
  letter-spacing:-.01em;
  transition:all .18s ease;
}

.btn--primary{
  box-shadow:0 10px 24px rgba(209,26,42,.18);
}

.btn--primary:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 32px rgba(209,26,42,.22);
}


/* ---------- CARDS polish ---------- */

.card,
.panel,
.feature,
.iconcard,
.scope,
.story,
.values,
.infocard{
  border-radius:14px;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 8px 22px rgba(2,6,23,.05);
  transition:transform .18s ease, box-shadow .18s ease;
}

.card:hover,
.iconcard:hover,
.scope:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 36px rgba(2,6,23,.10);
}
/* =========================================================
   POP-IN ON PAGE LOAD
   paste at the VERY END of styles.css
========================================================= */

/* to keimeno / caption pano stin fotografia */
.service-photos__cap{
  opacity: 0;
  transform: translateY(22px) scale(.96);
  animation: capPopIn .7s cubic-bezier(.22,1,.36,1) .08s forwards;
  will-change: transform, opacity;
}

/* an thes kai i megali fotografia na mpenei ligo pio omala */
.service-photos__main{
  overflow: hidden;
}

.service-photos__main img{
  animation: imgSoftIn .9s ease .05s both;
}

@keyframes capPopIn{
  0%{
    opacity: 0;
    transform: translateY(22px) scale(.96);
  }
  60%{
    opacity: 1;
    transform: translateY(-4px) scale(1.01);
  }
  100%{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes imgSoftIn{
  0%{
    opacity: .01;
    transform: scale(1.035);
  }
  100%{
    opacity: 1;
    transform: scale(1);
  }
}

/* gia users me reduced motion */
@media (prefers-reduced-motion: reduce){
  .service-photos__cap,
  .service-photos__main img{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* =========================================
   HERO TEXT POP (like Exterior Medics)
   append at END of styles.css
========================================= */

.hero__content > *{
  opacity:0;
  transform:translateY(26px);
  animation:heroPop .8s cubic-bezier(.22,1,.36,1) forwards;
}

/* stagger timing */
.hero__content > *:nth-child(1){ animation-delay:.35s; }
.hero__content > *:nth-child(2){ animation-delay:.35s; }
.hero__content > *:nth-child(3){ animation-delay:.35s; }
.hero__content > *:nth-child(4){ animation-delay:.35s; }
.hero__content > *:nth-child(5){ animation-delay:.35s; }

@keyframes heroPop{
  0%{
    opacity:0;
    transform:translateY(26px);
  }
  60%{
    opacity:1;
    transform:translateY(-4px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero__content > *{
    animation:none !important;
    opacity:1 !important;
    transform:none !important;
  }
}
/* Slight smoother entrance for hero content */
.hero__content{
  animation: heroFade .9s ease forwards;
}

@keyframes heroFade{
  from{
    opacity:0;
  }
  to{
    opacity:1;
  }
}

/* CTA button λίγο πιο “premium” */
.hero__actions .btn--primary{
  transform:translateY(0);
  transition:transform .18s ease, box-shadow .18s ease;
}

.hero__actions .btn--primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(209,26,42,.25);
}
/* ===== FORCE bigger header brand ===== */

.header .brand__logo{
  width:130px !important;
  height:110px !important;
  object-fit:contain;
}

.header .brand{
  gap:18px !important;
}

.brand__name{
  font-size:26px !important;
  font-weight:900 !important;
}

.brand__sub{
  font-size:17px !important;
}

.header__inner{
  min-height:110px !important;
}
/* HERO VIDEO */
.hero__media{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* optional: λίγο πιο cinematic */
.hero__video{
  filter:brightness(.88);
}
/* HERO HEIGHT BIGGER (for video) */

.hero{
  min-height: 88vh !important;   /* πριν ήταν ~72vh */
  display:flex;
  align-items:center;
}

.hero__media{
  position:absolute;
  inset:0;
}

.hero__video{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* optional: λίγο πιο cinematic spacing */
.hero__content{
  padding:90px 0 !important;
}
/* =========================================
   SPLIT HERO: video left / text right
========================================= */

.hero.hero--split{
  min-height: auto !important;
  background: #f7f8fb !important;
  border-bottom: 1px solid rgba(15,23,42,.08);
  padding: 42px 0 34px !important;
}

.hero.hero--split .hero__media,
.hero.hero--split .hero__shade{
  display: none !important;
}

.hero__split{
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
}

.hero__visual{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #0f172a;
  min-height: 560px;
  box-shadow: 0 18px 45px rgba(2,6,23,.12);
}

.hero__visual::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(15,23,42,.08), rgba(15,23,42,.16));
  pointer-events:none;
}

.hero__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__copy{
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.hero__copy .hero__title{
  color: #111827 !important;
  max-width: 11ch !important;
  font-size: clamp(40px,4.8vw,68px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.04em !important;
  margin: 14px 0 12px !important;
}

.hero__copy .hero__lead{
  color: #5f6b7a !important;
  max-width: 34ch !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
}

.hero__copy .pill{
  background: #fff !important;
  border: 1px solid rgba(15,23,42,.10) !important;
  color: #111827 !important;
}

.hero__copy .hero__actions{
  margin: 18px 0 24px !important;
}

.hero__copy .proof{
  max-width: 100% !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.hero__copy .proof__item{
  background:#fff !important;
  border:1px solid rgba(15,23,42,.08) !important;
  color:#111827 !important;
  box-shadow:0 10px 24px rgba(2,6,23,.06);
}

.hero__copy .proof__lbl{
  color:#5f6b7a !important;
}

@media (max-width: 980px){
  .hero__split{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero__visual{
    min-height: 340px;
    order: 2;
  }

  .hero__copy{
    order: 1;
  }

  .hero__copy .hero__title,
  .hero__copy .hero__lead{
    max-width: 100% !important;
  }

  .hero__copy .proof{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .hero.hero--split{
    padding: 26px 0 24px !important;
  }

  .hero__visual{
    min-height: 260px;
    border-radius: 18px;
  }

  .hero__copy .hero__title{
    font-size: clamp(32px,8vw,42px) !important;
  }

  .hero__copy .hero__actions{
    flex-direction: column;
    align-items: stretch;
  }

  .hero__copy .hero__actions .btn{
    width: 100%;
  }
}
/* =========================================
   SPLIT HERO FINAL TWEAK
   ligotero zoom + pop text animation
========================================= */

/* VIDEO: ligotero zoom */
.hero__visual .hero__video,
.hero__video{
  transform: scale(1.12) !important;   /* prin itan poly megalo */
  object-position: center center !important;
  object-fit: cover !important;
}

/* an to thes akoma ligotero, kane to 1.08 */
/* transform: scale(1.08) !important; */


/* TEXT COLUMN: pop transition */
.hero__copy .pill,
.hero__copy .hero__title,
.hero__copy .hero__lead,
.hero__copy .hero__actions,
.hero__copy .proof{
  opacity: 0;
  transform: translateY(26px);
  animation: heroSplitPop .8s cubic-bezier(.22,1,.36,1) forwards;
}

/* stagger */
.hero__copy .pill{ animation-delay: .10s; }
.hero__copy .hero__title{ animation-delay: .26s; }
.hero__copy .hero__lead{ animation-delay: .42s; }
.hero__copy .hero__actions{ animation-delay: .58s; }
.hero__copy .proof{ animation-delay: .74s; }

@keyframes heroSplitPop{
  0%{
    opacity: 0;
    transform: translateY(26px);
  }
  60%{
    opacity: 1;
    transform: translateY(-4px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

/* mikri asfaleia gia title */
.hero__copy .hero__title{
  line-height: 1.02 !important;
  letter-spacing: -.04em !important;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero__copy .pill,
  .hero__copy .hero__title,
  .hero__copy .hero__lead,
  .hero__copy .hero__actions,
  .hero__copy .proof{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__visual .hero__video,
  .hero__video{
    transform: none !important;
  }
}

/* mobile */
@media (max-width: 980px){
  .hero__visual .hero__video,
  .hero__video{
    transform: scale(1.06) !important;
  }
}
/* =========================================
   SPLIT HERO VIDEO FINAL FIX
========================================= */

/* make layout a bit wider on the video side */
.hero__split{
  grid-template-columns: 1.14fr .86fr !important;
  gap: 28px !important;
  align-items: center !important;
}

/* wider, slightly shorter visual block */
.hero__visual{
  position: relative !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  background: #0b1220 !important;
  min-height: 540px !important;
  box-shadow: 0 18px 45px rgba(2,6,23,.12) !important;
}

/* remove old hero image/fallback visually */
.hero__media,
.hero__media img{
  display: none !important;
}

/* less zoom on video */
.hero__visual .hero__video,
.hero__video{
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: scale(1.04) !important;
  filter: brightness(.92) !important;
  background: #0b1220 !important;
}

/* text pop animation */
.hero__copy .pill,
.hero__copy .hero__title,
.hero__copy .hero__lead,
.hero__copy .hero__actions,
.hero__copy .proof{
  opacity: 0;
  transform: translateY(26px);
  animation: heroSplitPop .8s cubic-bezier(.22,1,.36,1) forwards;
}

.hero__copy .pill{ animation-delay: .10s; }
.hero__copy .hero__title{ animation-delay: .24s; }
.hero__copy .hero__lead{ animation-delay: .38s; }
.hero__copy .hero__actions{ animation-delay: .52s; }
.hero__copy .proof{ animation-delay: .66s; }

@keyframes heroSplitPop{
  0%{
    opacity: 0;
    transform: translateY(26px);
  }
  60%{
    opacity: 1;
    transform: translateY(-4px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .hero__copy .pill,
  .hero__copy .hero__title,
  .hero__copy .hero__lead,
  .hero__copy .hero__actions,
  .hero__copy .proof{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__visual .hero__video,
  .hero__video{
    transform: none !important;
  }
}

@media (max-width: 980px){
  .hero__split{
    grid-template-columns: 1fr !important;
  }

  .hero__visual{
    min-height: 360px !important;
  }

  .hero__visual .hero__video,
  .hero__video{
    transform: scale(1.01) !important;
  }
}
/* =========================================
   MAKE VIDEO LONGER (ONLY VIDEO, NOT TEXT)
========================================= */

.hero__split{
  display: grid;
  grid-template-columns: 1fr 520px !important; 
  justify-content: space-between;
}

/* video παίρνει ΟΛΟ τον υπόλοιπο χώρο */
.hero__visual{
  width: 100% !important;
  height: 560px !important; /* βάλε το ίδιο που είχες */
}

/* text μένει fixed */
.hero__copy{
  width: 520px !important;
  max-width: 520px !important;
}
/* =========================================
   FIX: VIDEO STRETCH (ONLY VIDEO GROWS)
========================================= */

.hero__split{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px !important;
  gap: 20px !important;
}

/* KEY FIX: το container του video */
.hero__visual{
  width: 100% !important;
  height: 560px !important;
  overflow: hidden !important;
  display: flex !important;
}

/* KEY FIX: το video να γεμίζει ΠΛΑΤΟΣ */
.hero__video{
  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;   /* γεμίζει χωρίς μαύρα */
  object-position: center !important;

  transform: scale(1.15) !important; /* 👉 αυτό το "μακραίνει" */
}

/* text stays fixed */
.hero__copy{
  width: 520px !important;
  min-width: 520px !important;
  max-width: 520px !important;
}
/* =========================================
   HERO VIDEO WIDER FOR REAL
   (same text width, same height)
========================================= */

/* μεγαλώνει ΜΟΝΟ το hero row */
.hero .container{
  width: min(1380px, 96vw) !important;
}

/* κρατάμε fixed το text, δίνουμε όλο το υπόλοιπο στο video */
.hero__split{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 520px !important;
  gap: 28px !important;
  align-items: center !important;
}

/* text stays fixed */
.hero__copy{
  width: 520px !important;
  min-width: 520px !important;
  max-width: 520px !important;
}

/* video box becomes actually wider */
.hero__visual{
  width: 100% !important;
  height: 560px !important;
  min-height: 560px !important;
  max-height: 560px !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  display: block !important;
}

/* remove fake zoom */
.hero__video{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: scale(1.03) !important;
  background: transparent !important;
  display: block !important;
}

@media (max-width: 1200px){
  .hero .container{
    width: min(1240px, 96vw) !important;
  }

  .hero__split{
    grid-template-columns: minmax(0, 1fr) 480px !important;
  }

  .hero__copy{
    width: 480px !important;
    min-width: 480px !important;
    max-width: 480px !important;
  }
}

@media (max-width: 980px){
  .hero .container{
    width: min(1120px, 94vw) !important;
  }

  .hero__split{
    grid-template-columns: 1fr !important;
  }

  .hero__copy{
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .hero__visual{
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
  }
}
/* IMAGE FRAME FIX */
.service-card img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* γεμίζει ωραία */
  object-position: center;
  display: block;
  border-radius: 16px;
}

/* αν θες να φαίνεται ΟΛΗ η εικόνα χωρίς crop */
.service-card.contain img{
  object-fit: contain;
  background: #000; /* optional */
}

/* καλύτερο aspect ratio για cards */
.service-card{
  aspect-ratio: 4 / 3; /* ή 16/9 αν θες πιο wide */
  overflow: hidden;
}
.about-video{
    margin-top:20px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.about-video video{
    display:block;
    width:100%;
    height:auto;
    border-radius:18px;
}
.about-video-small{
    margin-top:18px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.about-video-small video{
    display:block;
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
}