/* Slovenia theme: bright with green accents (matches main theme) */

.ref-body-slovenia {
  /* Uses main theme vars: white bg, green accent — no overrides needed */
}

/* Scrollbar & selection — inherit from main theme */
.ref-body-slovenia ::-webkit-scrollbar-track { background: #f0f0f0; }
.ref-body-slovenia ::-webkit-scrollbar-thumb { background: #c4c4c4; border-radius: 4px; }
.ref-body-slovenia ::-webkit-scrollbar-thumb:hover { background: var(--ref-accent); }
.ref-body-slovenia ::selection { background: var(--ref-accent); color: #fff; }

/* ========== Hero: light gradient + green tint ========== */
.ref-body-slovenia .ref-hero {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.92) 0%, rgba(22, 163, 74, 0.03) 100%);
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.ref-body-slovenia .ref-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, transparent 30%, rgba(22, 163, 74, 0.02) 60%, transparent 100%);
  pointer-events: none;
}

.ref-body-slovenia .ref-hero::before {
  display: none;
}

.ref-body-slovenia .ref-hero-watermark {
  color: #e8e8e8;
}

.ref-body-slovenia .ref-hero-glow {
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(22, 163, 74, 0.08) 0%, transparent 50%);
}

/* ========== Sections: light alternation + green accents ========== */
.ref-body-slovenia .ref-services {
  background: var(--ref-bg);
}

.ref-body-slovenia .ref-services .ref-services-featured-bg {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.ref-body-slovenia .ref-portfolio {
  background: var(--ref-bg-secondary);
}

.ref-body-slovenia .ref-portfolio-row:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}


.ref-body-slovenia .ref-pricing {
  background: var(--ref-bg);
}

.ref-body-slovenia .ref-additional {
  background: var(--ref-bg-secondary);
}

.ref-body-slovenia .ref-additional-item-featured .ref-additional-featured-bg {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

/* ========== Consultation: mountain + overlay ========== */
.ref-body-slovenia .ref-consultation-bg-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 65%;
  height: 65%;
  object-fit: contain;
  object-position: center center;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate(-50%, -50%) translateZ(0);
  mix-blend-mode: soft-light;
  opacity: 0.85;
}

.ref-body-slovenia .ref-consultation-bg-placeholder {
  background: transparent;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.06) 50%, transparent 75%),
    linear-gradient(180deg, transparent 0%, rgba(22, 163, 74, 0.03) 50%, transparent 100%);
  background-position: 0 0, 0 0;
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  z-index: 2;
}

.ref-body-slovenia .ref-consultation-bg .ref-consultation-bg-placeholder {
  opacity: 0.4;
}

@media (min-width: 1024px) {
  .ref-body-slovenia .ref-consultation-bg .ref-consultation-bg-placeholder {
    background-attachment: fixed;
  }
}

.ref-body-slovenia .ref-consultation {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 0rem;
}

.ref-body-slovenia .ref-consultation-inner {
  gap: 6rem;
}

/* ========== Footer ========== */
.ref-body-slovenia .ref-footer {
  background: var(--ref-bg-secondary);
}

/* ========== Cards & borders ========== */
.ref-body-slovenia .ref-img-placeholder {
  background: #ebebeb;
}

/* Hero image is the section background — no separate box */
.ref-body-slovenia .ref-hero-figure {
  display: none;
}

/* ========== Slovenian decorative text ========== */
.ref-body-slovenia .ref-slovenian {
  color: var(--ref-text);
}

.ref-body-slovenia .ref-consultation-jp.ref-slovenian {
  color: var(--ref-text-muted);
  margin-left:10vw;
}

.ref-body-slovenia .ref-services-jp.ref-slovenian {
  color: var(--ref-text-dim);
}

.ref-body-slovenia .ref-hero-jp.ref-slovenian {
  color: var(--ref-text-dim);
}

/* Slovenia: responsive */
@media (max-width: 767px) {
  .ref-body-slovenia .ref-consultation {
    min-height: 100vh;
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }
}

/* ========== Sticky CTA bar ========== */
.ref-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}
.ref-sticky-cta.ref-sticky-cta-visible {
  transform: translateY(0);
}
.ref-sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--ref-bg);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.ref-sticky-cta-text {
  font-size: 0.9rem;
  color: var(--ref-text);
}
.ref-sticky-cta-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--ref-accent);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
}
.ref-sticky-cta-btn:hover {
  opacity: 0.95;
  color: #fff;
}
@media (max-width: 480px) {
  .ref-sticky-cta-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .ref-sticky-cta-text {
    width: 100%;
    text-align: center;
  }
}

