/* ===== Services Pages — EK ΝΕΟΥ ΣΥΝΔΕΣΗ ===== */

/* ── Shared helpers ───────────────────────────────── */
.svc-wrap    { width: min(1100px, 92%); margin: 0 auto; }
.svc-wrap-sm { width: min(860px, 92%);  margin: 0 auto; }

.svc-cta {
  display: inline-block;
  padding: 13px 30px;
  background: #AB6530;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  border-radius: 2px;
  border: 2px solid #AB6530;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.svc-cta:hover, .svc-cta:focus {
  background: #914D2C;
  border-color: #914D2C;
  color: #fff;
  text-decoration: none;
}
.svc-cta--outline {
  background: transparent;
  color: #AB6530;
}
.svc-cta--outline:hover, .svc-cta--outline:focus {
  background: #AB6530;
  color: #fff;
}
.svc-cta--lg { padding: 15px 38px; font-size: 15px; }
.svc-cta--full { width: 100%; display: block; text-align: center; }

/* ── Hero ─────────────────────────────────────────── */
.svc-hero {
  background: var(--c-section, #FCF5F0);
  padding: 150px 0 70px;
  text-align: center;
}
.svc-hero__crumbs {
  font-size: 12px;
  color: #999;
  margin-bottom: 14px;
}
.svc-hero__crumbs a { color: #999; text-decoration: none; }
.svc-hero__crumbs a:hover { color: #AB6530; }
.svc-hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 50px;
  color: #1f1f1f;
  margin: 0 0 14px;
  line-height: 1.2;
}
.svc-hero__sub {
  font-size: 17px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Category Filters ─────────────────────────────── */
.svc-filters {
  background: #fff;
  border-bottom: 1px solid #ece6e0;
  padding: 22px 0;
}
.svc-filters__inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.svc-filter-btn {
  padding: 8px 20px;
  background: #fff;
  border: 1.5px solid #d6cdc5;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  letter-spacing: 0.3px;
}
.svc-filter-btn:hover,
.svc-filter-btn.active {
  background: #AB6530;
  border-color: #AB6530;
  color: #fff;
  text-decoration: none;
}

/* ── Services Grid ────────────────────────────────── */
.svc-grid-section {
  background: #fff;
  padding: 60px 0 80px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Service Card ─────────────────────────────────── */
.svc-card {
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
  border: 1px solid #e8e0d8 !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative !important;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(171, 101, 48, 0.13);
  border-color: #AB6530;
}
.svc-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #AB6530;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  z-index: 2;
}
/* SALE ribbon — diagonal corner banner (WooCommerce style) */
.svc-card__badge--sale {
  top: 20px;
  right: -32px;
  left: auto;
  background: #27ae60;
  padding: 5px 0;
  width: 120px;
  text-align: center;
  border-radius: 0;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.18);
  z-index: 3;
}
.svc-card__img {
  position: relative !important;
  height: 220px !important;
  min-height: 220px !important;
  overflow: hidden !important;
  background: #f0ebe4 !important;
  display: block !important;
  flex-shrink: 0 !important;
}
.svc-card__img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s;
  display: block !important;
}
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #c8b8a4;
  font-size: 48px;
}

/* Image hover overlay */
.svc-card__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.svc-card:hover .svc-card__img-overlay { opacity: 1; }
.svc-card__img-overlay-btn {
  display: inline-block;
  background: #AB6530;
  color: #fff !important;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-decoration: none !important;
  border-radius: 2px;
  transform: translateY(10px);
  transition: background 0.2s, transform 0.3s;
}
.svc-card:hover .svc-card__img-overlay-btn { transform: translateY(0); }
.svc-card__img-overlay-btn:hover { background: #914D2C; }
.svc-card__body {
  padding: 26px 28px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #AB6530;
  margin-bottom: 8px;
}
.svc-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #1f1f1f;
  margin: 0 0 12px;
  line-height: 1.3;
}
.svc-card__title a { color: inherit; text-decoration: none; }
.svc-card__title a:hover { color: #AB6530; }
.svc-card__excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.svc-card__price {
  font-size: 26px;
  font-weight: 800;
  color: #AB6530;
  line-height: 1;
}
.svc-card__price-old {
  font-size: 16px;
  color: #aaa;
  text-decoration: line-through;
}
.svc-card__sale {
  font-size: 11px;
  font-weight: 700;
  background: #fde8e6;
  color: #c0392b;
  padding: 3px 9px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}
.svc-card__footer {
  display: flex;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid #f0ebe4;
}
.svc-card__footer .svc-cta { flex: 1; }

/* empty state */
.svc-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #888;
}
.svc-empty p { font-size: 18px; margin-bottom: 24px; }

/* ── Pagination ───────────────────────────────────── */
.svc-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-top: 50px;
}
.svc-pagination a {
  padding: 9px 22px;
  border: 1.5px solid #d6cdc5;
  border-radius: 2px;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}
.svc-pagination a:hover {
  background: #AB6530;
  border-color: #AB6530;
  color: #fff;
}
.svc-pagination__current { font-size: 14px; color: #888; }

/* ── List page CTA band ───────────────────────────── */
.svc-cta-band {
  background: var(--c-section, #FCF5F0);
  padding: 80px 0;
  text-align: center;
}
.svc-cta-band__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #1f1f1f;
  margin: 0 0 16px;
}
.svc-cta-band__text {
  font-size: 17px;
  color: #666;
  margin: 0 auto 32px;
  max-width: 520px;
}


/* ════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
   ════════════════════════════════════════════════════ */

.svc-detail-hero {
  background: var(--c-section, #FCF5F0);
  padding: 140px 0 60px;
}
.svc-detail-hero__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.svc-detail-hero__text { flex: 1; }
.svc-detail-hero__crumbs { font-size: 12px; color: #999; margin-bottom: 14px; }
.svc-detail-hero__crumbs a { color: #999; text-decoration: none; }
.svc-detail-hero__crumbs a:hover { color: #AB6530; }
.svc-detail-hero__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #AB6530;
  margin-bottom: 12px;
}
.svc-detail-hero__title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  color: #1f1f1f;
  line-height: 1.2;
  margin: 0 0 18px;
}
.svc-detail-hero__sub {
  font-size: 17px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}
.svc-detail-hero__img {
  flex: 0 0 420px;
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
}
.svc-detail-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Detail body with sticky sidebar */
.svc-detail-body {
  background: #fff;
  padding: 70px 0 80px;
}
.svc-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.svc-detail-sidebar {
  position: sticky;
  top: 100px;
}

/* Description */
.svc-detail-desc {
  font-size: 16px;
  color: #444;
  line-height: 1.85;
}
.svc-detail-desc h2,
.svc-detail-desc h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #1f1f1f;
  margin-top: 36px;
  margin-bottom: 14px;
}
.svc-detail-desc ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.svc-detail-desc ul li {
  padding: 6px 0 6px 26px;
  position: relative;
  color: #555;
  line-height: 1.7;
}
.svc-detail-desc ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #AB6530;
  font-size: 10px;
  top: 10px;
}

/* Pricing sidebar card */
.svc-price-card {
  border: 2px solid #AB6530;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.svc-price-card__head {
  background: #AB6530;
  padding: 22px 24px;
  text-align: center;
}
.svc-price-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}
.svc-price-card__price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.svc-price-card__price-old {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}
.svc-price-card__save {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
}
.svc-price-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-price-card__note {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: 4px;
}

/* Related Services */
.svc-related {
  background: var(--c-section, #FCF5F0);
  padding: 70px 0 80px;
}
.svc-related__heading {
  text-align: center;
  margin-bottom: 44px;
}
.svc-related__title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: #1f1f1f;
  margin: 0 0 10px;
}
.svc-related__sub { font-size: 15px; color: #777; }

/* Detail CTA band */
.svc-detail-cta {
  background: #3a3328;
  padding: 80px 0;
  text-align: center;
}
.svc-detail-cta__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.svc-detail-cta__text {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin: 0 auto 32px;
  max-width: 500px;
}
.svc-detail-cta .svc-cta {
  background: #fff;
  color: #AB6530;
  border-color: #fff;
}
.svc-detail-cta .svc-cta:hover {
  background: #AB6530;
  border-color: #AB6530;
  color: #fff;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-detail-layout { grid-template-columns: 1fr; }
  .svc-detail-sidebar { position: static; }
  .svc-detail-hero__img { flex: 0 0 320px; height: 260px; }
}
@media (max-width: 700px) {
  .svc-hero__title { font-size: 36px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-detail-hero__inner { flex-direction: column; gap: 30px; }
  .svc-detail-hero__img { flex: none; width: 100%; height: 220px; }
  .svc-detail-hero__title { font-size: 32px; }
  .svc-detail-cta__title { font-size: 28px; }
  .svc-related__title { font-size: 26px; }
}

