/* ========== variables ========== */
/* Junior Catering – Design system (παλέτα στυλ itdev.gr) */
:root {
  --color-primary: #0f172a;
  --color-primary-light: #1e293b;
  --color-primary-dark: #020617;
  --color-accent: #06b6d4;
  --color-accent-hover: #0d9488;
  --color-accent-light: #ccfbf1;
  --gradient-accent: linear-gradient(180deg, #22d3ee 0%, #14b8a6 40%, #5eead4 100%);
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --gradient-brand: linear-gradient(135deg, #22d3ee 0%, #14b8a6 35%, #5eead4 70%, #0f172a 100%);
  --font-heading: "DM Sans", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --container-max: 1200px;
  --section-padding: clamp(3rem, 6vw, 5rem);
  --reveal-duration: 0.6s;
  --reveal-delay: 0.1s;
}

/* ========== base ========== */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent);
  color: #fff;
  font-weight: 600;
  z-index: 9999;
  border-radius: 6px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--color-accent-hover);
  outline-offset: 2px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-hover); }
a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
button:focus-visible, .btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; margin: 0 0 0.5em; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary { background: var(--gradient-accent); color: #fff; }
.btn-primary:hover { background: var(--gradient-accent); color: #fff; transform: none; box-shadow: none; }
.btn-outline { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }

/* ========== header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #00b58d;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  overflow: visible;
  /* ΔΙΑΓΝΩΣΤΙΚΟ: translateZ(0) αφαιρέθηκε για έλεγχο lag */
  /* transform: translateZ(0); */
  /* backface-visibility: hidden; */
}
.navbar { width: 100%; }
.nav-container {
  display: block;
  position: relative;
  max-width: var(--container-max);
  width: 90%;
  margin: 0 auto;
  height: 62px;
  overflow: visible;
}
.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 36px;
  width: 36px;
  top: 14px;
  right: 1.25rem;
  z-index: 10;
  opacity: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
.nav-container .hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 28px;
  width: 32px;
  position: absolute;
  top: 14px;
  right: 1.25rem;
  z-index: 9;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #fff;
}
.nav-container .hamburger-lines .line1 { transform-origin: 0% 0%; transition: transform 0.4s ease-in-out; }
.nav-container .hamburger-lines .line2 { transition: transform 0.2s ease-in-out; }
.nav-container .hamburger-lines .line3 { transform-origin: 0% 100%; transition: transform 0.4s ease-in-out; }
.site-header .logo {
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  left: 1.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #fff;
  z-index: 9;
  overflow: visible;
}
.site-header .logo a { color: #fff; text-decoration: none; display: block; line-height: 0; }
.site-header .logo a:hover { color: rgba(255, 255, 255, 0.9); }
.site-header .logo img {
  height: 260px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-container .menu-items {
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.92) 100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-100%);
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding-left: 0;
  list-style: none;
  transition: transform 0.5s ease-in-out;
  z-index: 5;
}
.nav-container .menu-items li { margin: 0; width: 100%; max-width: 280px; display: flex; justify-content: center; }
.nav-container .menu-items li + li { margin-top: 0.25rem; }
.nav-container .menu-items a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.75rem;
  font-family: var(--font-body);
  padding: 0.75rem 1.25rem;
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-container .menu-items a:hover { color: var(--color-accent); background: var(--color-accent-light); }
.nav-container input[type="checkbox"]:checked ~ .menu-items { transform: translateX(0); visibility: visible; }
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line {
  background: #00b58d;
}
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 { transform: rotate(45deg); }
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 { transform: scaleY(0); }
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 { transform: rotate(-45deg); }
.nav-container input[type="checkbox"]:checked ~ .logo { display: none; }
body.nav-open { overflow: hidden; }
body { padding-top: 62px; }

/* ========== footer ========== */
.site-footer {
  background: #00b58d;
  color: #fff;
  font-weight: 500;
  padding: 0 0 2rem;
  margin-top: auto;
  position: relative;
  overflow-x: hidden;
}
.site-footer::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--gradient-accent);
}
.site-footer .container { padding-top: clamp(2.5rem, 5vw, 3.5rem); }
.site-footer a { color: #fff; font-weight: 600; transition: color 0.2s ease; }
.site-footer a:hover { color: #fff; text-decoration: underline; opacity: 0.9; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { gap: 2.5rem; } }
@media (min-width: 1024px) { .footer-grid { gap: 2.5rem 3rem; } }
.footer-brand { flex: 1 1 100%; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
@media (min-width: 768px) { .footer-brand { flex: 1 1 calc(50% - 1.25rem); } }
@media (min-width: 1024px) { .footer-brand { flex: 1 1 200px; } }
.footer-links { flex: 1 1 200px; min-width: 0; }
.footer-contact { flex: 1 1 260px; min-width: 0; }
.footer-brand__logo { position: relative; display: flex; align-items: center; justify-content: flex-start; margin-top: -130px; margin-left: -50px; margin-bottom: 0.75rem; width: 100%; max-width: 100%; overflow: visible; }
.footer-brand__img { width: clamp(160px, 32vw, 260px); max-width: 100%; height: auto; object-fit: contain; object-position: left center; }
@media (max-width: 767px) {
  .footer-brand__logo { margin-left: 0px; margin-top: -150px; }
  .footer-brand__img { width: clamp(400px, 80vw, 600px); }
}
.footer-brand__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-brand);
  /* ΔΙΑΓΝΩΣΤΙΚΟ: background-clip σχολιασμένο για έλεγχο lag */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* background-clip: text; */
}
.footer-brand__tagline { font-size: 0.95rem; line-height: 1.6; color: #fff; font-weight: 500; margin: 0; }
.footer-heading { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links__list { list-style: none; margin: 0; padding: 0; }
.footer-links__list li { margin-bottom: 0.5rem; }
.footer-links__list a { display: inline-block; font-weight: 600; }
.footer-contact__row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}
.footer-contact__row:last-child { margin-bottom: 0; }
.footer-icon { flex-shrink: 0; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.footer-contact__row a { color: #fff; font-weight: 600; word-break: break-word; overflow-wrap: break-word; }
.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 767px) { .footer-bottom { flex-direction: column; text-align: center; } .footer-social { justify-content: center; } }
.footer-bottom__copy { font-size: 0.9rem; color: #fff; font-weight: 600; margin: 0; flex: 1 1 auto; min-width: 0; max-width: 100%; }
.footer-bottom__copy strong { color: #fff; font-weight: 700; }
.footer-bottom__dev { font-size: 0.9rem; color: #fff; font-weight: 500; text-align: center; margin: 0; }
.footer-bottom__dev a { color: #fff; font-weight: 600; }
.footer-bottom__dev a:hover { color: #fff; opacity: 0.9; }
.footer-social { display: flex; gap: 0.75rem; justify-self: end; }
.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.footer-social__link:hover { color: #fff; background: rgba(255, 255, 255, 0.35); text-decoration: none; }
.footer-social__link svg { display: block; }

/* ========== reveal ========== (σύντομο transition για λιγότερο lag) */
.reveal { opacity: 0; transition: opacity 0.2s ease-out; }
.reveal.revealed { opacity: 1; }
.hero .reveal { opacity: 1; }
.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }

/* ========== carousel ========== */
.carousel-section { overflow: hidden; }
.carousel-scroll {
  --s: 240px;
  --d: 88s;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  min-height: 180px;
  background: var(--color-bg-alt);
}
.carousel-scroll__track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 0 16px;
  animation: carousel-scroll-move var(--d) linear infinite;
  animation-play-state: paused;
  will-change: auto;
}
.carousel-scroll--inview .carousel-scroll__track {
  animation-play-state: running;
  transform: translateZ(0);
}
/* Pause carousel κατά το scroll για ομαλότερη κύλιση */
body.is-scrolling .carousel-scroll--inview .carousel-scroll__track {
  animation-play-state: paused;
}
.carousel-scroll:not(.carousel-scroll--inview) .carousel-scroll__track {
  will-change: auto;
}
@keyframes carousel-scroll-move {
  0% { transform: translateZ(0) translateX(0); }
  100% { transform: translateZ(0) translateX(calc(-50% - 8px)); }
}
.carousel-scroll__track > div {
  width: var(--s);
  min-width: var(--s);
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.06);
}
.carousel-scroll__track > div img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  pointer-events: none;
}

/* ========== about-block ========== */
.about-us-block.section { padding-top: clamp(3.5rem, 8vw, 5rem); padding-bottom: clamp(3.5rem, 8vw, 5rem); }
.about-us-block .container { display: flex; justify-content: center; padding-left: 1.5rem; padding-right: 1.5rem; }
.about-us-block .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1150px;
  min-height: 380px;
  margin: 2.5rem auto;
  border: 2px solid rgba(6, 182, 212, 0.25);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
@media (min-width: 700px) {
  .about-us-block .wrap {
    height: 82vmin;
    max-height: 680px;
    min-height: 420px;
    flex-wrap: nowrap;
  }
}
.about-us-block .wrap:hover { border-color: rgba(6, 182, 212, 0.45); }
.about-us-block .overlay {
  position: absolute;
  left: 45%;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3rem;
  background: linear-gradient(160deg, #00b58d 0%, #00d4a1 100%);
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.25s ease-out;
  z-index: 2;
}
@media (max-width: 699px) {
  .about-us-block .overlay {
    left: 0;
    padding: 2rem 1.5rem;
    border-left: none;
    border-top: 3px solid var(--color-accent);
  }
}
.about-us-block .overlay-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
  padding: 0;
  border: none;
  transition: transform 0.3s ease-in-out 0.2s;
  z-index: 1;
}
.about-us-block .overlay-content h2 { font-size: clamp(1.35rem, 3.5vmin, 1.75rem); font-weight: 700; color: #fff; margin: 0; letter-spacing: -0.02em; line-height: 1.2; }
.about-us-block .overlay-content .about-us-block__tagline { font-size: clamp(0.9rem, 2vmin, 1.05rem); line-height: 1.5; color: #fff; margin: 0; font-weight: 600; }
.about-us-block .overlay-content .about-us-block__tagline--small { font-size: clamp(0.85rem, 1.8vmin, 0.98rem); color: #fff; font-weight: 600; margin-top: 0.25rem; }
.about-us-block .overlay-content .about-us-block__hint { font-size: 0.8rem; color: #fff; margin: 1rem 0 0 0; font-weight: 600; }
.about-us-block .image-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  min-width: 200px;
  height: 100%;
  background-color: var(--color-bg-alt);
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 699px) {
  .about-us-block .wrap { min-height: 480px; }
  .about-us-block .image-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 38%;
    min-height: 200px;
    max-height: 260px;
    z-index: 1;
  }
  .about-us-block .overlay,
  .about-us-block .text {
    top: 38%;
    bottom: 0;
    min-height: 0;
  }
  .about-us-block .text { z-index: 2; }
  .about-us-block .overlay { z-index: 3; }
  /* Tap στο μπλέ overlay: κρύψε εικόνα, δείξε μόνο κείμενο */
  .about-us-block .wrap.mobile-text-open .image-content { display: none; }
  .about-us-block .wrap.mobile-text-open .overlay { display: none; }
  .about-us-block .wrap.mobile-text-open .text {
    top: 0;
    padding-top: 3rem;
  }
}
.about-us-block .image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-us-block .dots { position: absolute; bottom: 1.25rem; left: 2.5rem; display: flex; flex-direction: row; gap: 0.5rem; align-items: center; z-index: 1; }
.about-us-block .dot { width: 6px; height: 6px; background: rgba(255, 255, 255, 0.5); border: none; border-radius: 50%; transition: background 0.3s ease-in-out, transform 0.3s ease-in-out; }
.about-us-block .wrap:hover .dots .dot { background: var(--color-accent); }
.about-us-block .text {
  position: absolute;
  left: 45%;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 2.5rem 3rem;
  background: var(--color-bg);
  border-left: 3px solid var(--color-accent-light);
  overflow-y: visible;
  z-index: 0;
}
@media (max-width: 699px) {
  .about-us-block .text {
    left: 0;
    padding: 2.5rem 1.5rem 2rem;
    border-left: none;
    border-top: 3px solid var(--color-accent-light);
  }
}
.about-us-block .text p { font-size: clamp(0.95rem, 2.2vmin, 1.1rem); line-height: 1.65; color: var(--color-text); margin-bottom: 1rem; }
.about-us-block .text p:last-child { margin-bottom: 0; }
/* Desktop: hover slide overlay. Mobile: απενεργοποιημένο (χρησιμοποιείται tap + mobile-text-open) */
@media (min-width: 700px) {
  .about-us-block .wrap:hover .overlay { transform: translateX(100%); }
}
/* ΔΙΑΓΝΩΣΤΙΚΟ: clip-path απενεργοποιημένο για έλεγχο lag */
.about-us-block .wrap,
.about-us-block .overlay,
.about-us-block .image-content,
.about-us-block .text { clip-path: none !important; }

/* Page sections – απλοποιημένο (content-visibility αφαιρέθηκε: προκαλούσε scroll lag) */
.section {
  padding: var(--section-padding) 0;
}
.section-alt {
  background: var(--color-bg-alt);
}
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.section-title h2 {
  margin-bottom: 0.5rem;
}
.section-title p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-images { padding: 0 0 1.5rem; overflow: hidden; }
.cta-images__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}
.cta-images__col {
  flex: 1 1 min(400px, 100%);
  min-width: 0;
  max-width: 100%;
}
.cta-images__col img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Hero */
.hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.hero-bg--index {
  background-image: url("../photo/1-768.webp");
}
@media (min-width: 769px) {
  .hero-bg--index {
    background-image: url("../photo/1.webp");
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.4);
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.hero .btn-primary {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.hero .btn-primary:hover {
  background: var(--color-accent);
  color: #fff;
  transform: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Cards */
.cards {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}
.card h3 {
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Intro services – Με τι ασχολούμαστε (πιο όμορφο design) */
.intro-services .section-title {
  margin-bottom: 2.5rem;
}
.intro-services .section-title h2 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--color-primary);
}
.intro-services .section-title p {
  font-size: 1.05rem;
  line-height: 1.65;
}
.cards--intro {
  gap: 1.75rem;
}
@media (min-width: 900px) {
  .cards--intro { gap: 2rem; }
}
.card--intro {
  position: relative;
  display: block;
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.card--intro:hover {
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  border-color: rgba(6, 182, 212, 0.2);
}
.card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 16px 16px 0 0;
}
.card--intro h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.card--intro p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Partners – συνεργασία animateur/μάγοι (χρωματιστό background + scroll animation) */
.partners-split {
  background: linear-gradient(
    135deg,
    #fff7ed 0%,
    rgba(234, 88, 12, 0.08) 35%,
    rgba(15, 23, 42, 0.04) 70%,
    #f0f4ff 100%
  );
}

/* Scroll animation για partners, fouskota & servitors – μόνο opacity (σύντομο για λιγότερο lag) */
.partners-split .offers-split__media,
.fouskota-split .offers-split__media,
.servitors-split .offers-split__media,
.partners-split .offers-split__content,
.fouskota-split .hover-reveal__right,
.servitors-split .hover-reveal__right {
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.partners-split .offers-split__content,
.fouskota-split .hover-reveal__right,
.servitors-split .hover-reveal__right {
  transition-delay: 0.1s;
}

.partners-split.in-view .offers-split__media,
.partners-split.in-view .offers-split__content,
.fouskota-split.in-view .offers-split__media,
.fouskota-split.in-view .hover-reveal__right,
.servitors-split.in-view .offers-split__media,
.servitors-split.in-view .hover-reveal__right {
  opacity: 1;
}

/* Στατικό layout χωρίς hover animation */
.offers-split--static .offers-split__content {
  flex: 1 1 300px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
}
.offers-split--static .offers-split__header {
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, #fff7ed 0%, rgba(255, 247, 237, 0.6) 100%);
  border-left: 4px solid #ea580c;
}
.offers-split--static.offers-split--reverse .offers-split__header {
  border-left: none;
  border-right: 4px solid #ea580c;
}
.offers-split--static .offers-split__header h2 {
  font-size: clamp(1.25rem, 3vmin, 1.6rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}
.offers-split--static .offers-split__tagline {
  font-size: clamp(0.9rem, 2vmin, 1rem);
  line-height: 1.55;
  color: var(--color-text);
  margin: 0;
  opacity: 0.9;
}
.offers-split--static .offers-split__body {
  padding: 2rem;
  background: var(--color-bg);
  border-top: 1px solid rgba(234, 88, 12, 0.12);
}
.offers-split--static .offers-split__body p {
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: clamp(0.95rem, 2vmin, 1.05rem);
}
.offers-split--static .offers-split__body p:last-child {
  margin-bottom: 0;
}

/* Hover reveal – ίδιο animation όπως Σχετικά με εμάς (overlay ολισθαίνει, κείμενο χωρίς scroll) */
.hover-reveal__right {
  position: relative;
  flex: 1 1 min(300px, 100%);
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .hover-reveal__right { min-height: 400px; }
}
.fouskota-split .hover-reveal__right {
  min-height: 560px;
}
.fouskota-split .hover-reveal__text {
  padding-bottom: 2.5rem;
}

.hover-reveal__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2rem;
  background: linear-gradient(160deg, #00b58d 0%, #00d4a1 100%);
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.25s ease-out;
  z-index: 2;
}

.hover-reveal--reverse .hover-reveal__overlay {
  border-left: none;
  border-right: 3px solid rgba(255, 255, 255, 0.5);
}

.hover-reveal__overlay h2 {
  font-size: clamp(1.25rem, 3vmin, 1.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.hover-reveal__tagline {
  font-size: clamp(0.9rem, 2vmin, 1rem);
  line-height: 1.5;
  color: #fff;
  margin: 0;
  font-weight: 600;
}

.hover-reveal__hint {
  font-size: 0.8rem;
  color: #fff;
  margin: 1rem 0 0 0;
  font-weight: 600;
}

.hover-reveal__text {
  position: absolute;
  inset: 0;
  padding: 2rem 2rem;
  background: var(--color-bg);
  border-left: 3px solid var(--color-accent-light);
  overflow-y: visible;
  z-index: 0;
}
.hover-reveal__text-lead {
  font-weight: 600;
  color: var(--color-primary);
  font-size: clamp(1rem, 2.2vmin, 1.15rem) !important;
  margin-bottom: 1.25rem !important;
}

.hover-reveal--reverse .hover-reveal__text {
  border-left: none;
  border-right: 3px solid var(--color-accent-light);
}

.hover-reveal__text p {
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.65;
  font-size: clamp(0.98rem, 2.2vmin, 1.08rem);
}

.hover-reveal__text p:last-child {
  margin-bottom: 0;
}

.hover-reveal:hover .hover-reveal__overlay {
  transform: translateZ(0) translateX(100%);
}

.hover-reveal--reverse:hover .hover-reveal__overlay {
  transform: translateZ(0) translateX(-100%);
}

/* Εναλλάξ: fouskota, offers = εικόνα δεξιά, κείμενο αριστερά */
.hover-reveal--reverse,
.offers-split--reverse {
  flex-direction: row-reverse;
}

/* Offers – εναλλάξ εικόνα αριστερά/δεξιά, κείμενο δεξιά/αριστερά */
.offers-row {
  margin-bottom: 3rem;
}
.offers-row:last-of-type {
  margin-bottom: 0;
}
.offers-split__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.offers-row--reverse .offers-split__inner {
  flex-direction: row-reverse;
}
.offers-split__media {
  flex: 1 1 min(340px, 100%);
  min-width: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
}
.offers-split__media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  clip-path: polygon(
    18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px
  );
}
.offers-split__content {
  flex: 1 1 300px;
  min-width: 0;
}
.offers-split__content h2 {
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
}
.offers-split__content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.offers-split__content p:last-child {
  margin-bottom: 0;
}
.offer-content ul {
  margin: 0.5rem 0 1rem;
  padding-left: 0;
  list-style: none;
}
.offer-content li {
  position: relative;
  padding: 0.2rem 0 0.2rem 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.offer-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}
.offer-content .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-top: 1rem;
  margin-bottom: 0;
}
@media (min-width: 700px) {
  .offers-split__inner {
    gap: 2.5rem;
  }
  .offers-split__media {
    flex: 0 0 min(48%, 520px);
  }
}
@media (max-width: 699px) {
  .offers-row--reverse .offers-split__inner {
    flex-direction: column;
  }
  .hover-reveal--reverse,
  .offers-split--reverse {
    flex-direction: column;
  }
  .offers-split__media,
  .hover-reveal__right {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .hover-reveal__right { min-height: 420px; }
  .hover-reveal__text {
    overflow-y: visible;
    padding-bottom: 2rem;
  }
}

/* Offer blocks */
.offer-block {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.offer-block h3 {
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.offer-block ul {
  margin: 0.5rem 0 1rem;
}
.offer-block li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.offer-block li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}
.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-top: 1rem;
}

/* ========== Menu packages ========== */
.menu-packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .menu-packages {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
.menu-card {
  position: relative;
  background: var(--color-bg);
  border-radius: 20px;
  padding: 0 2rem 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.menu-card:hover {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(6, 182, 212, 0.25);
  transform: translateY(-4px);
}
.menu-card__accent {
  display: block;
  width: 100%;
  height: 5px;
  background: var(--gradient-accent);
  border-radius: 20px 20px 0 0;
  margin-bottom: 1.75rem;
}
.menu-card__header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.menu-card__title {
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
  letter-spacing: -0.02em;
}
.menu-card__subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.menu-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
}
.menu-card__items {
  list-style: none;
  margin: 0 0 auto;
  padding: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.menu-card__items li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
}
.menu-card__items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-accent);
}
.menu-card__footer {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 1.25rem;
  text-align: center;
}
.menu-card__price {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: priceGlow 3s ease-in-out infinite;
}
.menu-card__price small {
  font-size: 1rem;
  font-weight: 600;
}
@keyframes priceGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}

/* ========== Menu extras ========== */
.menu-extras-section {
  background: var(--color-bg);
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .extras-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.extras-card {
  background: var(--color-bg-alt);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.extras-card:hover {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
  border-color: rgba(6, 182, 212, 0.2);
  transform: translateY(-3px);
}
.extras-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(20, 184, 166, 0.08) 100%);
  color: var(--color-accent);
  margin-bottom: 0.25rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.extras-card:hover .extras-card__icon {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(20, 184, 166, 0.15) 100%);
  transform: scale(1.08);
}
.extras-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  letter-spacing: -0.01em;
}
.extras-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.15rem 0.65rem;
  border-radius: 20px;
  letter-spacing: 0.01em;
}

/* ========== Ice cream bike ========== */
.icecream-bike-section .offers-split__media img {
  border-radius: 20px;
  box-shadow: none;
  clip-path: none;
  mix-blend-mode: multiply;
}
.icecream-bike__content {
  flex: 1 1 300px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.icecream-bike__content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.icecream-bike__tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.icecream-bike__content p {
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-size: clamp(0.95rem, 2vmin, 1.05rem);
}
.icecream-bike__content p:last-child {
  margin-bottom: 0;
  margin-top: 0.5rem;
}

/* Gallery grid */
/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-grid__link {
  display: block;
  text-decoration: none;
}
.gallery-grid__link img,
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.gallery-grid__link:hover img {
  opacity: 0.9;
}

/* Lightbox – gallery */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.lightbox--open {
  opacity: 1;
  visibility: visible;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.lightbox__inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.lightbox--open .lightbox__img {
  opacity: 1;
  transform: scale(1);
}
.lightbox__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.lightbox__prev {
  left: 1.5rem;
}
.lightbox__next {
  right: 1.5rem;
}
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Contact form */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-info {
  margin-bottom: 2rem;
}
.contact-info a {
  font-weight: 500;
}

/* Contact page – αριστερά φόρμα, δεξιά λίστα + στοιχεία */
.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
  }
}
.contact-layout__left {
  min-width: 0;
}
.contact-layout__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
  overflow: visible;
}
.contact-card {
  background: var(--color-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
}
.contact-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 3px solid var(--color-accent);
  letter-spacing: -0.01em;
}
.contact-card__row {
  display: grid;
  grid-template-columns: 1.75rem 6.5rem 1fr;
  gap: 0 1rem;
  align-items: start;
  padding: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: background 0.2s ease;
}
.contact-card__row:hover {
  background: rgba(6, 182, 212, 0.04);
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 8px;
}
.contact-card__row:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .contact-card__row {
    grid-template-columns: 1.75rem minmax(4rem, auto) 1fr;
    gap: 0 0.5rem;
  }
  .contact-card {
    padding: 1.5rem;
    overflow: visible;
  }
}
.contact-card__icon {
  flex-shrink: 0;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  margin-top: 0.1rem;
}
.contact-card__label {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
}
.contact-card__value {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  min-width: 0;
  word-break: break-all;
  overflow-wrap: break-word;
}
.contact-card__value a,
a.contact-card__value {
  color: var(--color-accent);
  font-weight: 500;
  transition: color 0.2s ease;
}
.contact-card__value a:hover,
a.contact-card__value:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}
.contact-list {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.contact-list__title {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-accent);
}
.contact-list__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: var(--color-text);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.contact-list__item:last-child {
  border-bottom: none;
}
.contact-list__icon {
  flex-shrink: 0;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-details__card {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.contact-details__title {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-accent);
}
.contact-details__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.contact-details__row:last-of-type {
  border-bottom: none;
}
.contact-details__label {
  font-weight: 600;
  color: var(--color-primary);
  min-width: 6rem;
}
.contact-details__row a {
  color: var(--color-accent);
}
.contact-details__row a:hover {
  text-decoration: underline;
}
.contact-details__form-wrap,
.contact-layout__left {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.contact-details__form-wrap .contact-details__title,
.contact-layout__left .contact-details__title {
  margin-bottom: 1.25rem;
}
.contact-form .form-group {
  margin-bottom: 1.25rem;
}
.contact-form .form-group:last-of-type {
  margin-bottom: 1.5rem;
}
