:root {
  --yellow: #FCCB03;
  --red: #C8102E;
  --green: #2E7D32;
  --green2: #256428;

  --text: #111;
  --muted: #444;
  --line: #e6e6e6;
  --bg: #fff;
  --soft: #f7f7f7;

  --radius: 18px;
  --shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

/* Default (DESKTOP): δείχνω κανονικό menu, κρύβω hamburger + drawer */
.hamburger {
  display: none !important;
}

.overlay {
  display: none;
}

/* overlay δεν χρειάζεται στο desktop */
.drawer {
  display: none;
}

/* drawer δεν χρειάζεται στο desktop */
.desktop-nav {
  display: flex;
}

/* desktop links visible */


h2 {
  font-weight: 800;
  letter-spacing: -0.3px;
}

.card h3 {
  font-weight: 800;
}

/* default κείμενα */
p { color: var(--muted); }
.lead { color: var(--muted); }

/* μόνο στο hero να είναι άσπρα */
.hero-inner, .hero-inner p { color: #fff; }

/* και στο CTA */
.cta, .cta p { color: #fff; }

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* ---------------- MENU ---------------- */
.menu {
  background: var(--yellow);
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 22px;
  margin: 8px 16px;
  border-width: 1.5px;
  padding: 10px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .07);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  height: 80px;
  width: auto;
  display: block;
}

.menu-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 7px 9px;
}

.menu-links a {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 10px;
  border-radius: 10px;
}

.menu-links a:hover {
  background: rgba(0, 0, 0, 0.08);
}

.menu-links a.active {
  background: rgba(0, 0, 0, 0.10);
  border: 0;
}


/* ---------------- HERO BG ---------------- */
.hero-bg {
  position: relative;
  max-width: 1200px;
  margin: 18px auto 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;

  /* Βάλε εδώ τη φωτογραφία background */
  background: url("assets/office.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-inner {

  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 56px 34px;
  color: #fff;
}

.hero-kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(252, 203, 3, 0.18);
  border: 1px solid rgba(252, 203, 3, 0.35);
  margin-bottom: 12px;
}

.hero-inner h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.hero-inner p {
  margin: 0 0 18px;
  font-size: 18px;
  opacity: .95;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green2);
}

.btn-secondary {
  background: var(--yellow);
  color: #111;
}

.btn-secondary:hover {
  filter: brightness(.96);
}

/* ---------------- SECTIONS ---------------- */
.section {
  padding: 48px 0;
}

.section.alt {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

h2 {
  margin: 0;
  font-size: 30px;
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
  font-size: 16px;
  opacity: .9;
}

.center {
  margin-top: 18px;
  text-align: center;
}

/* trust strip */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;

}

.trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: rgba(46, 125, 50, 0.85);
  /* πράσινη γραμμή */
}

.trust-title {
  font-weight: 900;
  margin-bottom: 4px;
}

.trust-text {
  color: var(--muted);
  font-size: 14px;
}

/* cards */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
}

.card.soft {
  background: #fff;
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0 0 10px;
  color: var(--muted);
}

a:focus,
button:focus {
  outline: 3px solid rgba(252, 203, 3, 0.45);
  outline-offset: 2px;
  border-radius: 10px;
}


.link {
  color: var(--green2);
  text-decoration: none;
  font-weight: 900;
  display: inline-flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(46, 125, 50, 0.08);
  align-items: center;
}

.ico {
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.link:hover {
  background: rgba(46, 125, 50, 0.14);
  text-decoration: none;
}

/* CTA */
.cta {
  background:
    radial-gradient(700px 220px at 15% 30%, rgba(252, 203, 3, 0.18), transparent 60%),
    radial-gradient(700px 220px at 85% 60%, rgba(46, 125, 50, 0.18), transparent 60%),
    #111;
  color: #fff;
  padding: 52px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-inner h2 {
  margin: 0 0 6px;
}

.cta-inner p {
  margin: 0;
  opacity: .9;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-actions .btn {
  min-width: 180px;
  text-align: center;
}

/* footer */
.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 26px 0 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-title {
  font-weight: 800;
  margin-bottom: 4px;
}

.footer-text {
  color: var(--muted);
  font-size: 14px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* responsive */
@media (max-width: 980px) {
  .menu {
    border-radius: 18px;
  }

  .menu-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-links {
    flex-wrap: wrap;
  }

  .trust {
    grid-template-columns: 1fr 1fr;
  }

  .grid3 {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: baseline;
  }


  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-inner {
    padding: 44px 18px;
  }

  .hero-inner p {
    font-size: 16px;
  }
}

.topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: #444;
}

.topbar-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a {
  color: #111;
  text-decoration: none;
  font-weight: 700;
}

.topbar a:hover {
  text-decoration: underline;
}

@media (max-width: 680px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .topbar-links {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .topbar-links a {
    display: inline-block;
    font-size: 13px;
    word-break: break-word;
  }
}

/* ---------- Desktop/Mobile switch ---------- */
.hamburger {
  display: none;
}

.desktop-nav {
  display: flex;
}

/* ---------- Hamburger button ---------- */
.hamburger {
  width: 46px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.20);
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  cursor: pointer;
  margin-right: auto;
}

.hamburger span {
  height: 2.5px;
  width: 100%;
  background: #111;
  border-radius: 999px;
}

/* ---------- Overlay ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 80;
}

.menu-left {
  display: flex;
  align-items: center;
  gap: 12px;
  /* απόσταση logo – γραμμές */
}

/* ---------- Drawer ---------- */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(320px, 86vw);
  background: #fff;
  transform: translateX(-102%);
  transition: transform .25s ease;
  z-index: 90;
  box-shadow: 18px 0 40px rgba(0, 0, 0, .18);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  /* IMPORTANT */
  -webkit-overflow-scrolling: touch;
  padding-bottom: 18px;
}

.drawer-top {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.drawer-title {
  font-weight: 900;
  font-size: 16px;
}

.drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

/* Drawer links */
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}

.drawer-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 800;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.04);
}

.drawer-nav a:hover {
  background: rgba(0, 0, 0, 0.07);
}

.drawer-nav a.active {
  border: 1px solid rgba(46, 125, 50, 0.30);
  background: rgba(46, 125, 50, 0.10);
}

/* Drawer CTA buttons */
.drawer-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-cta .btn {
  width: 100%;
  text-align: center;
}

/* ---------- Open state ---------- */
body.menu-open .overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .drawer {
  transform: translateX(0);
}

/* ---------- Responsive: mobile behavior ---------- */
@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .menu {
    border-radius: 18px;
    padding: 12px 14px;
  }

  .menu-header {
    justify-content: space-between;
  }

  .logo {
    height: 44px;
  }
}

@media (max-width: 680px) {
  .hero-bg {
    min-height: 520px;
    /* πιο ψηλό για να χωράει */
    border-radius: 18px;
  }

  .hero-inner {
    padding: 22px 16px;
    margin: 16px;
    max-width: 100%;
  }

  .hero-inner h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-inner p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
  }
}

.topbar a,
.footer a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    height: 44px;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex !important;
  }

  .overlay {
    display: block;
  }

  .drawer {
    display: flex;
  }


}

/* -------- ABOUT PAGE LAYOUT -------- */
.page { padding: 20px 0 10px; }

.page-hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: center;
  padding: 18px 0 10px;
}

.page-hero h1{
  margin: 0 0 8px;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.4px;
}

.hero-mini{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.mini-item{
  font-weight: 800;
  font-size: 13px;
  color: var(--text);
  background: rgba(252,203,3,.22);
  border: 1px solid rgba(0,0,0,.12);
  padding: 8px 10px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  gap:8px;
}
.mini-item .dot{
  width:8px; height:8px; border-radius:50%;
  background: rgba(46,125,50,.95);
  display:inline-block;
}

.page-hero-media img{
  width:100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.two-col{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: start;
}

.glance h3{ margin-top: 0; }

.checklist{
  margin: 10px 0 0;
  padding-left: 18px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li{
  color: var(--muted);
  font-weight: 650;
}

.quote{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}
.quote p{ margin:0; color: var(--text); font-weight: 750; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.steps{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.step{
  display:flex;
  gap: 12px;
  align-items: flex-start;
}
.step h3{ margin:0 0 6px; }
.badge{
  min-width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(46,125,50,.12);
  border: 1px solid rgba(46,125,50,.25);
  color: var(--green2);
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:center;
}

@media (max-width: 980px){
  .page-hero{ grid-template-columns: 1fr; }
  .page-hero-media img{ height: 260px; }
  .two-col{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}

/* =========================
   SERVICES PAGE (ADD-ON CSS)
   ========================= */

.page {
  padding-bottom: 0;
}

.page-hero {
  padding: 36px 0 22px;
}

.page-hero-inner {
  background:
    radial-gradient(900px 300px at 20% 20%, rgba(252, 203, 3, 0.20), transparent 60%),
    radial-gradient(900px 300px at 85% 70%, rgba(46, 125, 50, 0.18), transparent 60%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
}

.page-badge {
  display: inline-block;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(46, 125, 50, 0.10);
  border: 1px solid rgba(46, 125, 50, 0.22);
  color: #0f2b12;
  margin-bottom: 10px;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.page-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 900px;
  font-size: 16px;
}

.page-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* 3 main service cards */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-media {
  position: relative;
  min-height: 260px;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 22px;
}

.service-kicker {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 6px;
}

.service-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.service-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

/* chips (insect list) */
.chips {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-weight: 800;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.04);
}

/* rodent list */
.service-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-list li {
  margin: 6px 0;
}

/* disinfection "ideal for" */
.ideal-for {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ideal-item {
  text-align: center;
  font-weight: 900;
  padding: 10px 8px;
  border-radius: 14px;
  border: 1px solid rgba(46, 125, 50, 0.18);
  background: rgba(46, 125, 50, 0.08);
  color: #0f2b12;
}

/* Special German cockroach section */
.special-wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

.special-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.special-badge {
  display: inline-block;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(252, 203, 3, 0.18);
  border: 1px solid rgba(252, 203, 3, 0.32);
  margin-bottom: 10px;
}

.special-content p {
  color: var(--muted);
  margin: 0 0 10px;
}

.steps {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
}

.step-n {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(46, 125, 50, 0.14);
  border: 1px solid rgba(46, 125, 50, 0.22);
  color: #0f2b12;
}

.step-t {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.special-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.special-media .gallery {
  display: grid;
  gap: 12px;
}

.g-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.g-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.g-item figcaption {
  padding: 10px 12px;
  font-weight: 800;
  color: rgba(0,0,0,.65);
  font-size: 13px;
}

/* pest strip */
.pest-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pest {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pest img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.pest figcaption {
  padding: 10px 12px;
  font-weight: 900;
  color: rgba(0,0,0,.65);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px) {
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-media {
    min-height: 220px;
  }

  .ideal-for {
    grid-template-columns: repeat(2, 1fr);
  }

  .special-wrap {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .pest-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .page-hero-inner {
    padding: 18px 14px;
  }

  .service-content {
    padding: 16px;
  }

  .pest-strip {
    grid-template-columns: 1fr;
  }
}
.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icons img {
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}