/* ============================================================
   CONTACT PAGE — page-specific styles
   ============================================================ */

/* ── HERO OVERRIDE — shorter contact hero ── */
.hero--contact {
  height: 900px;
}

.hero--contact .hero__content {
  top: 270px;
  padding-top: 80px;
  padding-bottom: 40px;
}

/* ── HERO LIGHT VARIANT — no image, light grey bg, black text ── */
.hero--light {
  background-image: none;
  background-color: #f8f8f8;
}

.hero--light .h1-mont,
.hero--light .h1-dutch,
.hero--light .hero__sub,
.hero--light .bh1 {
  color: #111111;
}

.hero--light .nav__brand,
.hero--light .nav__link {
  color: #111111;
}

.hero--light .nav__link::after {
  background-color: #111111;
}

.hero--light .dropdown-icon {
  filter: none;
}

/* Invert nav CTA in light hero — dark button on light bg */
.hero--light .nav__cta {
  background: #111111;
  color: #ffffff;
}

/* Solid hero btn dark on light hero */
.hero--light .hero__btn--solid {
  background: #111111;
  color: #ffffff;
}

.hero--light .hero__btn--ghost .ghost-text {
  color: #111111;
}

.hero--light .hero__btn--ghost .ghost-text::after {
  background-color: #111111;
}

.hero--light .hero__quick,
.hero--light .hero__quick-item {
  color: #111111;
}

.hero--light .hero__quick-item::after {
  background-color: #111111;
}

.hero--light .hero__quick-sep {
  background: rgba(0, 0, 0, 0.35);
}

/* Hide-by-tweak helpers */
.hero--no-eyebrow .bh1 { display: none; }
.hero--no-quick   .hero__quick { display: none; }
/* When eyebrow hidden, push the heading down so vertical rhythm is preserved */
.hero--no-eyebrow .hero__heading { margin-top: 0; }

/* ── NAČINI BOXES — Montserrat only override ── */
.nacini__box-value {
  font-family: var(--font-mont);
  font-style: normal;
  font-size: 22px;
  font-weight: var(--fw-medium);
}

/* Square middle box icon (no rounded corners) */
.nacini__box--filled .nacini__box-icon {
  border-radius: 4px;
}

/* Static corner button — no rotate */
.nacini__box:hover .nacini__box-corner {
  transform: none;
}

/* Quick reach inline links beneath buttons */
.hero__quick {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1.6s ease-out 0.6s forwards;
}

.hero__quick-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mont);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #ffffff;
}

.hero__quick-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

.hero__quick-item:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.hero__quick-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.85;
}

.hero__quick-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   FORM SECTION
   ============================================================ */

.section-form {
  background: #ffffff;
  width: 100%;
  margin: 0 auto;
  padding-top: 110px;
  padding-bottom: 110px;
}

.form__layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── LEFT: heading + sub ── */
.form__intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f3f3f3;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  font-family: var(--font-mont);
  font-size: 13.5px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  margin-bottom: 28px;
}

.form__intro-tag::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2bbf6a;
  box-shadow: 0 0 0 4px rgba(43, 191, 106, 0.18);
}

.form__heading {
  margin: 0 0 30px 0;
  font-weight: var(--fw-regular);
  display: block;
}

.form__heading-line {
  display: block;
  line-height: var(--lh-h2-mont);
}

.form__heading-line .h2-mont {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  line-height: var(--lh-h2-mont);
  letter-spacing: -0.07em;
  color: #111111;
}

.form__heading-line .h2-dutch {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-weight: 400;
  font-style: italic;
  line-height: var(--lh-h2-mont);
  letter-spacing: var(--ls-default);
  color: #111111;
}

.form__sub {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-p) * 0.96);
  font-weight: var(--fw-regular);
  line-height: var(--lh-p);
  letter-spacing: var(--ls-default);
  color: #555555;
  max-width: 540px;
  margin-bottom: 50px;
}

/* ── RESPONSIBLE PERSON CARD ── */
.form__person {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: #f6f6f6;
  border: 1px solid #ececec;
  border-radius: 14px;
  max-width: 460px;
  margin-bottom: 36px;
}

.form__person-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #d2d2d2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-dutch);
  font-style: italic;
  font-size: 26px;
  color: #111111;
  flex-shrink: 0;
}

.form__person-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form__person-name {
  font-family: var(--font-mont);
  font-size: 15.5px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-default);
  color: #111111;
}

.form__person-role {
  font-family: var(--font-mont);
  font-size: 13.5px;
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-default);
  color: #555555;
}

/* ── DIRECT LINKS LIST (left column) ── */
.form__direct {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form__direct-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ececec;
}

.form__direct-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.form__direct-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form__direct-icon svg {
  width: 18px;
  height: 18px;
  stroke: #111111;
}

.form__direct-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.form__direct-label {
  font-family: var(--font-mont);
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #888888;
}

.form__direct-value {
  font-family: var(--font-mont);
  font-size: 19px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.form__direct-value::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #111111;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

.form__direct-value:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.form__direct-meta {
  font-family: var(--font-mont);
  font-size: 13.5px;
  font-weight: var(--fw-regular);
  color: #777777;
}

/* ── RIGHT: form card ── */
.form__card {
  background: #f5f5f5;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 36px 36px 32px;
}

.form__card-title {
  font-family: var(--font-mont);
  font-size: 22px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  margin-bottom: 6px;
}

.form__card-meta {
  font-family: var(--font-mont);
  font-size: 13.5px;
  font-weight: var(--fw-regular);
  color: #888888;
  letter-spacing: var(--ls-default);
  margin-bottom: 28px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.form__row .form__field {
  margin-bottom: 0;
}

.form__field label {
  font-family: var(--font-mont);
  font-size: 12.5px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  color: #555555;
  text-transform: none;
}

.form__field input,
.form__field textarea,
.form__field select {
  font-family: var(--font-mont);
  font-size: 15px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  width: 100%;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: #aaaaaa;
  font-weight: var(--fw-regular);
}

.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  border-color: #111111;
}

.form__field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.5;
}

/* ── BUDGET CHIP RADIO ── */
.form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form__chip {
  position: relative;
  cursor: pointer;
}

.form__chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.form__chip-label {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 999px;
  font-family: var(--font-mont);
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #555555;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.form__chip:hover .form__chip-label {
  border-color: #111111;
  color: #111111;
}

.form__chip input:checked + .form__chip-label {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

/* ── SUBMIT ROW ── */
.form__submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e3e3e3;
}

.form__legal {
  font-family: var(--font-mont);
  font-size: 12px;
  font-weight: var(--fw-regular);
  color: #888888;
  letter-spacing: var(--ls-default);
  max-width: 280px;
  line-height: 1.5;
}

.form__legal a {
  color: #111111;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mont);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #ffffff;
  background: #111111;
  border: none;
  border-radius: 8px;
  padding: 14px 22px;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  line-height: 1.2;
  flex-shrink: 0;
}

.form__submit .btn-track {
  position: relative;
  display: block;
  height: 1.2em;
  overflow: hidden;
}

.form__submit .btn-track__inner {
  display: block;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
}

.form__submit .btn-track__inner > span {
  display: block;
  height: 1.2em;
  line-height: 1.2;
}

.form__submit:hover .btn-track__inner {
  transform: translateY(-1.2em);
}

.form__submit svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  transition: transform 0.3s ease;
}

.form__submit:hover svg {
  transform: translate(2px, -2px);
}

/* ── SUCCESS STATE ── */
.form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.form__card.is-success .form__success {
  display: flex;
}

.form__card.is-success .form__card-title,
.form__card.is-success .form__card-meta,
.form__card.is-success form {
  display: none;
}

.form__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.form__success-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
}

.form__success-title {
  font-family: var(--font-mont);
  font-size: 28px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  margin-bottom: 12px;
}

.form__success-title em {
  font-family: var(--font-dutch);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
}

.form__success-text {
  font-family: var(--font-mont);
  font-size: 15px;
  font-weight: var(--fw-regular);
  color: #555555;
  line-height: 1.6;
  max-width: 360px;
}

/* ============================================================
   NAČINI / OFFICE SECTION — 3 boxes
   ============================================================ */
.section-nacini {
  background: #ffffff;
  width: 100%;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 30px;
}

.nacini__heading {
  margin: 0 0 50px 0;
  text-align: center;
  display: block;
}

.nacini__heading .h2-mont {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  line-height: var(--lh-h2-mont);
  letter-spacing: -0.07em;
  color: #111111;
}

.nacini__heading .h2-dutch {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-weight: 400;
  font-style: italic;
  line-height: var(--lh-h2-mont);
  letter-spacing: var(--ls-default);
  color: #111111;
}

.nacini__sub {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-p) * 0.96);
  font-weight: var(--fw-regular);
  line-height: var(--lh-p);
  letter-spacing: var(--ls-default);
  color: #555555;
  max-width: var(--max-content);
  opacity: 0.9;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 70px;
}

/* Reuse saradnja box dims but with custom content */
.nacini__boxes {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.nacini__box {
  position: relative;
  flex-shrink: 0;
  width: 448px;
  height: 320px;
  border-radius: 12px;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nacini__box--filled {
  background: #111111;
  border-color: #111111;
}

.nacini__box-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nacini__box-icon svg {
  width: 20px;
  height: 20px;
  stroke: #111111;
  fill: none;
  stroke-width: 1.5;
}

.nacini__box--filled .nacini__box-icon {
  background: rgba(255, 255, 255, 0.1);
}

.nacini__box--filled .nacini__box-icon svg {
  stroke: #ffffff;
}

.nacini__box-tag {
  position: absolute;
  top: 32px;
  right: 24px;
  font-family: var(--font-mont);
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #555555;
}

.nacini__box--filled .nacini__box-tag {
  color: rgba(255, 255, 255, 0.7);
}

.nacini__box-tag::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2bbf6a;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(43, 191, 106, 0.2);
}

.nacini__box-body {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.nacini__box-header {
  display: block;
  font-family: var(--font-mont);
  font-size: 26px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  line-height: 1.1;
  margin-bottom: 12px;
}

.nacini__box--filled .nacini__box-header {
  color: #ffffff;
}

.nacini__box-value {
  display: block;
  font-family: var(--font-mont);
  font-style: normal;
  font-size: 22px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  line-height: 1.2;
  margin-bottom: 16px;
}

.nacini__box--filled .nacini__box-value {
  color: #ffffff;
}

.nacini__box-sub {
  font-family: var(--font-mont);
  font-size: 13.5px;
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-default);
  color: #555555;
  line-height: 1.5;
}

.nacini__box--filled .nacini__box-sub {
  color: rgba(255, 255, 255, 0.7);
}

.nacini__box-corner {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 3;
}

.nacini__box-corner svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
}

.nacini__box:hover .nacini__box-corner {
  transform: rotate(-45deg);
}

.nacini__box--filled .nacini__box-corner {
  background: #ffffff;
}

.nacini__box--filled .nacini__box-corner svg {
  stroke: #111111;
}

/* When tag is replaced by corner button */
.nacini__box--has-corner .nacini__box-tag {
  display: none;
}

/* ============================================================
   SOCIALS / NEWSLETTER STRIP
   ============================================================ */
.section-strip {
  background: #ffffff;
  width: 100%;
  margin: 0 auto;
  padding-top: 14px;
  padding-bottom: 90px;
}

.strip__inner {
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 36px 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  background: #fafafa;
}

.strip__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.strip__title {
  font-family: var(--font-mont);
  font-size: 24px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
}

.strip__title em {
  font-family: var(--font-dutch);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
}

.strip__sub {
  font-family: var(--font-mont);
  font-size: 14.5px;
  font-weight: var(--fw-regular);
  color: #555555;
  letter-spacing: var(--ls-default);
  line-height: 1.5;
}

.strip__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.strip__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 999px;
  font-family: var(--font-mont);
  font-size: 13.5px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.strip__social svg {
  width: 14px;
  height: 14px;
}

.strip__social:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.strip__social:hover svg {
  stroke: #ffffff;
  fill: #ffffff;
}

/* ============================================================
   ANIMATIONS — fade in
   ============================================================ */
.section-form.will-animate .form__layout > *,
.section-nacini.will-animate .nacini__heading,
.section-nacini.will-animate .nacini__sub,
.section-nacini.will-animate .nacini__box,
.section-strip.will-animate .strip__inner {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
}

.section-form.anim-visible .form__layout > * {
  opacity: 1;
  transform: translateY(0);
}

.section-form.anim-visible .form__layout > *:nth-child(2) {
  transition-delay: 0.18s;
}

.section-nacini.anim-visible .nacini__heading,
.section-nacini.anim-visible .nacini__sub {
  opacity: 1;
  transform: translateY(0);
}

.section-nacini.anim-visible .nacini__sub {
  transition-delay: 0.12s;
}

.section-nacini.anim-visible .nacini__box {
  opacity: 1;
  transform: translateY(0);
}

.section-nacini.anim-visible .nacini__box:nth-child(1) { transition-delay: 0.20s; }
.section-nacini.anim-visible .nacini__box:nth-child(2) { transition-delay: 0.30s; }
.section-nacini.anim-visible .nacini__box:nth-child(3) { transition-delay: 0.40s; }

.section-strip.anim-visible .strip__inner {
  opacity: 1;
  transform: translateY(0);
}
