:root{
  /* Base – ΦΩΤΕΙΝΟ */
  --bg: #f4f2ee;        /* ζεστό off-white */
  --bg2:#ebe7e1;
  --card:#ffffff;

  --text:#1f2933;      /* σκούρο γκρι (όχι μαύρο) */
  --muted:#4b5563;     /* slate */
  --line: rgba(0,0,0,.08);

  /* Accent – ήρεμο, επαγγελματικό */
  --accent:#2f3e46;    /* warm slate blue-grey */
  --accent2:#3f4f57;

  --shadow: 0 14px 36px rgba(0,0,0,.12);
  --radius: 18px;
}



*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1100px 700px at 20% 0%, #121a2d 0%, var(--bg) 55%);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(14,15,18,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 -1px 0 rgba(209,178,124,.45);
  
}
.brand,
.brand span{
  color: #f1f5f9; /* καθαρό off-white */}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.2px;
}
.brand-logo{
  height: 48px;          /* ίδιο ύψος με πριν */
  width: auto;
  display: block;
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{
  color: rgba(241,245,249,.75);
  padding:10px 12px;
  border-radius: 12px;
  transition: .2s ease;
}
.nav a:hover{ color:var(--text); background: rgba(255,255,255,.06); }

.nav-toggle{
  display:none;
  width:44px;
  height:40px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  background: var(--text);
  margin:6px 10px;
  opacity:.9;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.15);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#1a1200;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.btn:active{ transform: translateY(0); }
.btn-small{ padding: 10px 12px; }

.btn-ghost{
  background: rgba(0,0,0,.18);
  color: var(--text);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
  backdrop-filter: blur(6px);
}

.site-header .btn{
  background: rgba(255,255,255,.85);
  color:#121416;
}


/* Hero */
.hero{
  position:relative;
  padding: 70px 0 56px;
  overflow:hidden;
}

/* bg */
.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}
.hero-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("assets/hero-bg.png") center / cover no-repeat;
  transform: scale(1.02);
  filter: contrast(1.05) saturate(1.05) brightness(1.05);
}

/* overlay (center-focused for readability) */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(
      760px 300px at 50% 48%,
      rgba(0,0,0,.55),
      rgba(0,0,0,.25) 60%,
      rgba(0,0,0,.10) 100%
    );
}

.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  min-height: 520px;
  align-content: center;
}

/* no card look (just wrapper) */
.hero-card{
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  max-width: 900px;
}

.hero-card h1{
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.4px;
  text-shadow:
    0 2px 12px rgba(0,0,0,.45),
    0 10px 40px rgba(0,0,0,.35);
  position: relative;
}

.hero-card h1::after{
  content:"";
  display:block;
  width: 64px;
  height: 2px;
   margin: 18px auto 0;
   background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: .6;
  border-radius: 2px;
  opacity: .9;
}


.hero-subtitle{
  font-size: 17px;
  opacity: .9;
}

/* Trust badges */
.hero-trust{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
.trust-badge{
  padding: 8px 12px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(2px);
  color: #fff;
  font-size: 14px;
}

/* If hero-stats still exists in HTML, keep hidden */
.hero-stats{ display:none; }
/* =========================
   SECTIONS – CLEAN & LIGHT
   ========================= */

.section{
  padding: 64px 0;
  background: #f7f8fa;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom: 32px;
}

.section-head h2{
  margin:0;
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
}

.section-head p{
  margin:0;
  max-width: 520px;
  line-height:1.6;
  color: #475569;
}

/* Grid */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}

/* Cards */
.card{
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
}

.card h3{
  margin:0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.card p{
  margin:0 0 14px;
  line-height:1.6;
  color: #475569;
}

/* Checklist */
.checklist{
  margin:0;
  padding-left: 18px;
  color: #475569;
}

.checklist li{
  margin: 8px 0;
}

/* Responsive */
@media (max-width: 880px){
  .grid-3{
    grid-template-columns: 1fr;
  }
}


/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.shot{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.shot img{
  height: 260px;
  width:100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.shot:hover img{ transform: scale(1.03); }

/* About */
.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.highlight{
  border: 1px solid rgba(209,178,124,.25);
  background: linear-gradient(135deg, rgba(209,178,124,.10), rgba(255,255,255,.02));
}

.pill-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.pill{
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  color: var(--muted);
  background: rgba(0,0,0,.16);
}

/* Steps (if used in HTML) */
.steps{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.steps li{ margin: 8px 0; }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
label{
  display:block;
  margin: 10px 0 12px;
  color: var(--muted);
  font-weight: 600;
}
input, textarea{
  width:100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(209,178,124,.45);
  box-shadow: 0 0 0 4px rgba(209,178,124,.12);
}

.muted{ color: var(--muted); font-size: 14px; line-height:1.4; }
.small{ font-size: 13px; }

.mini-map{
  margin-top: 12px;
  border-radius: var(--radius);
  border:1px dashed rgba(255,255,255,.14);
  padding: 14px;
  background: rgba(0,0,0,.12);
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 22px 0;
  background: rgba(0,0,0,.18);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  color: var(--muted);
}
.to-top{
  padding: 10px 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(0,0,0,.12);
}

/* Reveal animation */
.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* Mobile sticky call button (optional) */
.mobile-call{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 60;
  width: min(420px, calc(100% - 28px));
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.15);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#1a1200;
  font-weight: 900;
  text-align:center;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  display:none;
}

/* Responsive */
@media (max-width: 880px){
  .grid-3{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }

  .nav-toggle{ display:inline-block; }
  .nav{
    display:none;
    position:absolute;
    right: 4%;
    top: 64px;
    flex-direction:column;
    width: min(360px, 92vw);
    padding: 10px;
    background: rgba(14,15,18,.92);
    border:1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
  }
  .nav.open{ display:flex; }

  .hero{ padding: 58px 0 90px; } /* space for sticky button */
  .mobile-call{ display:block; }
}
.hero-subtitle{
  color: #ffffff !important;
  opacity: 0.95;
}
.hero-card h1::after{
  background: #ffffff !important;
  opacity: 0.9;
}
/* ABOUT / Σχετικά – match the light cards style */
#about.section{
  background: #f7f8fa;
}

#about .two-col{
  gap: 20px;
  align-items: start;
}

/* Left text */
#about h2{
  color: #0f172a;
}
#about p{
  color: #475569;
  line-height: 1.6;
}

/* Pills -> like tags, όχι γκρι κουμπιά */
#about .pill-row{
  margin-top: 16px;
}
#about .pill{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  color: #334155;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  padding: 8px 12px;
}

/* Right card -> same as services cards */
#about .card.highlight{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  border-radius: 20px;
}

#about .card.highlight h3{
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 10px;
}

#about .steps{
  color: #475569;
}
#about .steps li{
  margin: 10px 0;
}

/* Responsive polish */
@media (max-width: 880px){
  #about .two-col{
    gap: 16px;
  }
}
/* ===== FIX contact Call/Email buttons (scoped) ===== */
#contact .contact-actions{
  display:flex;
  gap:12px;
  margin-top:16px;
}

/* kill underline from tel/mail rules */
#contact .contact-actions a{
  text-decoration: none !important;
  border-bottom: 0 !important;
}

/* override your global .btn gradient ONLY inside contact-actions */
#contact .contact-actions .btn{
  padding:12px 20px;
  border-radius:14px;
  font-weight:800;
  font-size:15px;
  line-height:1;
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.12);
  background: #ffffff !important;
  color: #0f172a !important;
}

/* Primary (Call) */
#contact .contact-actions .btn-primary{
  background: #2f3e46 !important;
  border-color: rgba(0,0,0,.12);
  color: #ffffff !important;
}

/* Secondary (Email) */
#contact .contact-actions .btn-outline{
  background: #ffffff !important;
  color: #0f172a !important;
}

#contact .contact-actions .btn-primary:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}
#contact .contact-actions .btn-outline:hover{
  background: #f3f4f6 !important;
}
.mini-map{
  padding:0;
  overflow:hidden;
  border-radius:16px;
}

.mini-map iframe{
  width:100%;
  height:260px;
  border:0;
  display:block;
}
@media (max-width: 480px){
  .hero-inner{
    min-height: 560px;
    padding: 0 12px;
  }

  .hero-card h1{
    font-size: 40px; /* πιο controlled */
    line-height: 1.05;
  }

  .hero-subtitle{
    font-size: 15px;
    max-width: 34ch;
  }

  .hero-trust{
    gap: 8px;
  }

  .trust-badge{
    font-size: 12px;
    padding: 6px 10px;
    white-space: nowrap;
  }
}
@media (max-width: 880px){
  .nav{
    position: absolute;
    top: 64px;              /* κάτω από header */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 420px;

    background: rgba(15,18,25,.92);
    backdrop-filter: blur(14px);

    border-radius: 20px;
    padding: 18px 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
  }

  .nav a{
    font-size: 17px;
    padding: 14px 12px;
    text-align: center;
  }

  .nav .btn{
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 880px){
  .nav{
    position: fixed;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 420px;

    background: #04060a; /* καθαρό σκούρο */
    backdrop-filter: none;

    border-radius: 20px;
    padding: 20px 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,.55);
    z-index: 100;
  }

  .hero{
    padding-top: 120px; /* ⬅️ δίνει χώρο ώστε να μην καλύπτεται */
  }
}
.contact-image{
  margin-top: 24px;
}

.contact-image img{
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.btn-facebook{
  background: #1877f2;
  color: #ffffff;
  border: none;
}

.btn-facebook:hover{
  filter: brightness(1.05);
}
