@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
body {
  position: relative;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
}

/* GLOBAL CUSTOM CURSOR */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  mix-blend-mode: difference;
  background: #382F2D;
  transform: translate3d(-50%, -50%, 0);
  transition: transform 0.17s ease-out, width 0.25s ease-out, height 0.25s ease-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

/* veći kružić kad je nad „specijalnim“ elementima */
#cursor.cursor--big {
  width: 70px;
  height: 70px;
}

/* opcionalno: sakrij kursor na mobilnim uređajima */
@media (max-width: 1024px) {
  #cursor {
    display: none;
  }
}
.container {
  max-width: 1286px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.grecaptcha-badge {
  display: none !important;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.has-bgr {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}

/* Osnovna klasa koju stavljaš na sekcije */
.scroll-fade-up {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

/* Kada element uđe u viewport (JS dodaje ovu klasu) */
.scroll-fade-up.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Poštujemo korisnike sa reduced motion podešavanjem */
@media (prefers-reduced-motion: reduce) {
  .scroll-fade-up {
    transition: none;
    transform: none !important;
    opacity: 1 !important;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/***
    The new CSS reset - version 1.5.1 (last updated 1.3.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
  height: auto;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly. */
:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Google fonts – Inter + Playfair Display */
/* Helper mixini za najčešće težine */
html,
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.75;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  margin: 0 0 1em 0;
}

h1 {
  font-size: 56px;
}
@media (max-width: 1080px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 40px;
}
@media (max-width: 1080px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 32px;
}
@media (max-width: 1080px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
}
@media (max-width: 1080px) {
  h4 {
    font-size: 18px;
  }
}

p {
  margin-bottom: 1em;
}

.chapter-intro {
  padding: 130px 0;
}
@media (max-width: 1080px) {
  .chapter-intro {
    padding: 60px 0;
  }
}
.chapter-intro__inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  -moz-column-gap: 80px;
       column-gap: 80px;
  align-items: flex-start;
}
@media (max-width: 1080px) {
  .chapter-intro__inner {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
.chapter-intro__right p {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #231F20;
  margin-bottom: 30px;
}
.chapter-intro__right ul {
  padding-left: 25px;
}
.chapter-intro__right ul li {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  list-style-type: disc;
}
.chapter-intro__content p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #231F20;
}
.chapter-intro__title {
  font-size: 56px;
  line-height: 77px;
  font-family: "Playfair Display", serif;
}
@media (max-width: 1080px) {
  .chapter-intro__title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 0;
  }
}
.chapter-intro__title-accent {
  color: #c9a38b;
  display: inline;
  font-weight: inherit;
}
.chapter-intro .italic, .chapter-intro em, .chapter-intro i {
  font-size: 20px;
  line-height: 32px;
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.chapter-intro__title-line--dark {
  display: block;
  color: #18282b;
}
.chapter-intro__title-line--accent {
  display: block;
  color: #B59280;
}
.chapter-intro__button {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  background-color: #E5603B;
  font-size: 14px;
  padding: 0.9em 1.7em;
  line-height: 1.5em;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  transition: all, 0.5s;
  text-transform: uppercase;
}
.chapter-intro__button:hover {
  background-color: #F96B43;
}

.services-highlights__header {
  text-align: left;
}
.services-highlights__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 52px;
  color: #231F20;
  margin-bottom: 25px;
}
@media (max-width: 1080px) {
  .services-highlights__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
.services-highlights__intro {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #231F20;
  margin: 0;
}
.services-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 397px));
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 1080px) {
  .services-highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .services-highlights__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (min-width: 1025px) {
  .services-highlights__card:last-child {
    grid-column: 2/3;
  }
}
.services-highlights__card {
  background-color: #f4f2ea;
  padding: 15px 30px;
  border-radius: 8px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.services-highlights__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.services-highlights__card-title {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  color: #231F20;
  margin: 0 0 10px;
}
.services-highlights__card-text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #231F20;
  margin: 0;
}
.services-highlights__card-text p {
  margin-bottom: 0;
}

/* VARIJANTA ZA BLOK IZ DIZAJNA “At Your Service…” */
.services-highlights--centered .services-highlights__header {
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 32px;
}
.services-highlights--centered .services-highlights__intro p {
  font-size: 20px;
  line-height: 32px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-style: italic;
}
@media (max-width: 767px) {
  .services-highlights--centered .services-highlights__intro p {
    font-size: 16px;
    line-height: 28px;
  }
}
.services-highlights--centered .services-highlights__grid {
  margin-top: 40px;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
}
@media (max-width: 1080px) {
  .services-highlights--centered .services-highlights__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .services-highlights--centered .services-highlights__grid {
    grid-template-columns: 1fr;
  }
}
.services-highlights--centered .services-highlights__card {
  padding: 24px 32px;
  min-height: 160px;
}
@media (min-width: 1025px) {
  .services-highlights--centered .services-highlights__card:last-child {
    grid-column: auto;
  }
}

.home-packages {
  overflow: hidden;
}
.home-packages__header {
  text-align: center;
  margin-bottom: 40px;
}
.home-packages .container-packages {
  max-width: 1366px;
  width: 100%;
  padding-left: 40px;
  padding-right: 0;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .home-packages .container-packages {
    padding-left: 20px;
    padding-right: 0;
  }
}
.home-packages__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  color: #18282b;
  margin: 0 0 12px;
}
@media (max-width: 1080px) {
  .home-packages__title {
    font-size: 32px;
  }
}
.home-packages__intro {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #231f20;
  margin: 0;
}
.home-packages__inner {
  position: relative;
}
.home-packages {
  /* strelice levo, jedna ispod druge kao u dizajnu */
}
.home-packages__arrows {
  position: absolute;
  left: 30px;
  top: 11%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}
@media (max-width: 767px) {
  .home-packages__arrows {
    top: auto;
    bottom: -87px;
    flex-direction: row-reverse;
    left: 0;
  }
}
.home-packages__arrow {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background-color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.home-packages__arrow::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../icons/arrow.png");
}
.home-packages__arrow.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}
.home-packages__arrow--next::before {
  transform: rotate(0deg);
}
.home-packages__arrow--prev::before {
  transform: rotate(180deg);
}
.home-packages__arrow:hover {
  transform: translateY(0px);
}
.home-packages__arrow:hover::before {
  background-image: url("../icons/arrow-orange.png");
  filter: none;
}
.home-packages__slider {
  position: relative;
  margin-left: 80px;
}
.home-packages__slider::before {
  content: "";
  display: block;
  background-color: #ffffff;
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 100%;
  z-index: 4;
}
@media (max-width: 1080px) {
  .home-packages__slider {
    margin-left: 60px;
  }
}
@media (max-width: 767px) {
  .home-packages__slider {
    margin-left: 0;
  }
}
.home-packages__slider .slick-track {
  display: flex;
}
.home-packages__slide {
  position: relative;
  height: 496px;
  width: 376px;
  overflow: hidden;
}
.home-packages__slide:hover .home-packages__image {
  transform: scale(1.03);
}
.home-packages__slider .slick-track {
  display: flex;
}
.home-packages__image {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-size: cover;
  background-position: center center;
  outline: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.home-packages__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 32px 28px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.6) 100%);
  color: #fefefe;
  color: #ffffff;
}
.home-packages__slide-title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 6px;
}
.home-packages__slide-location {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}
.home-packages {
  /* malo zooma na hover */
}
@media (max-width: 1024px) {
  .home-packages {
    padding: 80px 0 100px;
  }
  .home-packages__slider {
    margin-left: 60px;
  }
  .home-packages__slide {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .home-packages__arrows {
    transform: translate(0, -50%);
  }
  .home-packages__slider {
    margin-left: 0;
  }
  .home-packages__slider .slick-list {
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
  .home-packages__slider .slick-track {
    display: flex;
    margin: 0;
  }
  .home-packages__slider .slick-slide {
    margin: 0;
    padding: 0;
  }
  .home-packages__slide {
    height: 380px;
    width: auto;
    flex: none;
  }
}

.home-stories__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.home-stories__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  color: #18282b;
  margin: 0;
}
@media (max-width: 1080px) {
  .home-stories__title {
    font-size: 32px;
  }
}
.home-stories__button {
  width: 187px;
  height: 45px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 4px;
  border: 1px solid #E5603B;
  color: #232222;
  background-color: #fff;
  text-decoration: none;
  transition: all, 0.5s;
}
.home-stories__button:hover {
  background-color: #E5603B;
  color: #fff;
}
.home-stories {
  /* dugme dole desno kao na dizajnu */
}
.home-stories__footer {
  margin-top: 24px;
  text-align: right;
}
.home-stories__inner {
  position: relative;
}
.home-stories {
  /* strelice desno, jedna ispod druge */
}
.home-stories__arrows {
  position: absolute;
  right: 0;
  top: 54px;
  transform: translateY(-53px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}
.home-stories__arrow {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background-color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.home-stories__arrow::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.home-stories__arrow {
  /* default ikonice */
}
.home-stories__arrow--next::before {
  background-image: url("../icons/arrow.png");
}
.home-stories__arrow--prev::before {
  background-image: url("../icons/arrow.png");
  transform: rotate(180deg);
}
.home-stories__arrow {
  /* HOVER stanje */
}
.home-stories__arrow:hover {
  transform: translateY(0px);
}
.home-stories__arrow:hover::before {
  background-image: url("../icons/arrow-orange.png");
  filter: none;
}
.home-stories .slick-track {
  display: flex;
}
.home-stories {
  /* Slick wrapper – ne diramo track, samo zaobljenje */
}
.home-stories__slider .slick-list {
  overflow: hidden;
  border-radius: 8px;
}
.home-stories .slick-list {
  max-width: 1135px;
  width: 100%;
}
.home-stories {
  /* svaki slide – visina + pozicija, ali BEZ flex-a */
}
.home-stories__slide {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 718px;
  text-decoration: none;
}
.home-stories__slide:hover .home-stories__image img {
  transform: scale(1.03);
}
.home-stories {
  /* slika preko cele površine slajda */
}
.home-stories__image {
  position: absolute;
  inset: 0;
}
.home-stories__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  outline: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.home-stories {
  /* kartica sa citatom – kao na dizajnu */
}
.home-stories__quote-card {
  position: absolute;
  left: 60px;
  bottom: 60px;
  max-width: 279px;
  background-color: #f4f2ea;
  padding: 28px 26px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1;
}
.home-stories__quote {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
  color: #231F20;
  margin: 0 0 16px;
}
.home-stories__meta {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 20px;
  color: #555;
  margin: 0 0 10px;
}
.home-stories__author {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  font-style: italic;
  margin: 0;
}
@media (max-width: 1080px) {
  .home-stories__arrows {
    right: 16px;
  }
  .home-stories__quote-card {
    left: 32px;
    bottom: 32px;
    max-width: 280px;
  }
}
@media (max-width: 1080px) {
  .home-stories {
    padding: 80px 0;
  }
  .home-stories__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .home-stories__arrows {
    top: auto;
    bottom: -114px;
    right: 0;
    flex-direction: row-reverse;
  }
  .home-stories__slide {
    min-height: 420px;
  }
  .home-stories__quote-card {
    left: 20px;
    right: 20px;
    bottom: 24px;
    max-width: none;
  }
}
.home-stories__footer {
  margin-top: 30px;
  text-align: right;
  margin-right: 70px;
}
@media (max-width: 1080px) {
  .home-stories__footer {
    margin-top: 100px;
  }
}

.join-community {
  padding: 120px 0;
  background-color: #f4f2ea;
  position: fixed;
  opacity: 0;
  top: 0;
}
@media (max-width: 1080px) {
  .join-community {
    padding: 60px 0;
  }
}
.join-community__inner {
  text-align: center;
  z-index: 0;
  position: relative;
}
.join-community__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  color: #183138;
  margin: 0 0 25px;
}
@media (max-width: 1080px) {
  .join-community__title {
    font-size: 32px;
  }
}
.join-community__text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #231F20;
  margin: 0 0 32px;
  max-width: 386px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.join-community {
  /* WRAP ZA FORMU */
}
.join-community__form {
  max-width: 386px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.join-community__form .wpcf7-form {
  text-align: left;
}
.join-community__form .wpcf7-select {
  display: none;
}
.join-community__form .join-community__fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.join-community__form .join-community__field {
  width: 100%;
}
.join-community__form {
  /* INPUTI + SELECTI */
}
.join-community__form input[type=text],
.join-community__form input[type=email],
.join-community__form input[type=tel],
.join-community__form select {
  height: 33px;
  color: #232222;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
  width: 100%;
  border: 1px solid #232222;
  padding: 10px 12px;
  border-radius: 4px;
  background-color: #f4f2ea;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.join-community__form input[type=text]::-moz-placeholder, .join-community__form input[type=email]::-moz-placeholder, .join-community__form input[type=tel]::-moz-placeholder, .join-community__form select::-moz-placeholder {
  color: #232222;
}
.join-community__form input[type=text]::placeholder,
.join-community__form input[type=email]::placeholder,
.join-community__form input[type=tel]::placeholder,
.join-community__form select::placeholder {
  color: #232222;
}
.join-community__form input[type=text]:focus,
.join-community__form input[type=email]:focus,
.join-community__form input[type=tel]:focus,
.join-community__form select:focus {
  outline: none;
  border-color: none;
  box-shadow: 0;
  background-color: transparent;
}
.join-community__form {
  /* SELECT – custom strelica */
}
.join-community__form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../icons/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
  padding-right: 32px;
}
.join-community__form {
  /* SUBMIT dugme */
}
.join-community__form .join-community__field--submit {
  text-align: center;
  margin-top: 14px;
}
.join-community__form button,
.join-community__form input[type=submit] {
  display: grid;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  background-color: #E5603B;
  color: #fff;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  transition: background-color 0.2s ease, transform 0.15s ease;
  margin: 0 auto;
  transition: all, 0.5s;
}
.join-community__form button:hover,
.join-community__form input[type=submit]:hover {
  background-color: #F96B43;
}
.join-community__form p {
  margin-bottom: 0;
}
.join-community__form {
  /* CF7 poruke / errori */
}
.join-community__form .wpcf7-not-valid-tip {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
}
.join-community__form .wpcf7-response-output {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  margin-top: 16px;
  border-radius: 4px;
  padding: 10px 12px;
}
.join-community__disclaimer {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 28px;
  color: #231F20;
  max-width: 440px;
  margin: 0 auto 30px;
  text-align: center;
}
.join-community__social {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.join-community__social-link img {
  display: block;
  width: 32px;
  height: 32px;
}
@media (max-width: 1080px) {
  .join-community {
    padding: 72px 0;
  }
  .join-community__inner {
    max-width: 100%;
    padding: 0 24px;
  }
}
.join-community .custom-combobox {
  height: 33px;
  padding: 10px 12px;
  border-radius: 4px;
  color: #232222;
  font-size: 1em;
  line-height: 1em;
  display: inline-block;
  border: 1px solid #232222;
  position: relative;
}
.join-community .custom-combobox .cs-dropdown {
  background: #f5f2ea;
  position: absolute;
  width: calc(100% + 2px);
  z-index: 9999;
  border: 1px solid #232222;
  left: -1px;
  top: 31px;
  max-height: 300px;
  overflow-y: auto; /* samo vertikalni scroll */
  overflow-x: hidden;
  /* Firefox */
  scrollbar-width: none; /* sakriva traku, zadržava scroll */
  /* IE / Edge legacy */
  -ms-overflow-style: none;
}
.join-community .custom-combobox {
  /* Chrome, Safari, novi Edge, Opera */
}
.join-community .custom-combobox .cs-dropdown::-webkit-scrollbar {
  display: none;
}
.join-community .custom-combobox .cs-option,
.join-community .custom-combobox .cs-selected {
  color: #232222 !important;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px !important;
  line-height: 1 !important;
  padding: 0;
}
.join-community .custom-combobox .cs-search {
  color: #232222;
  font-size: 14px;
  padding: 0;
  width: 100%;
  top: -11px;
  left: -11px;
  padding-left: 10px !important;
  border: 0;
  height: 33px;
}
.join-community .custom-combobox custom-combobox .cs-selected[value=""] {
  color: #232222 !important;
}
.join-community .custom-combobox .cs-option {
  background: #f4f2ea;
  border-bottom: 1px solid #232222;
  transition: all 0.4s;
  padding: 10px 12px;
}
.join-community .custom-combobox .cs-option:last-child {
  border: none;
}
.join-community .custom-combobox .cs-right {
  width: 8px;
  top: 40%;
  right: 0px;
  border-bottom: 1px solid #232222;
  border-right: 1px solid #232222;
}
.join-community .custom-combobox.is-searching .cs-selected {
  visibility: hidden;
}
.join-community .custom-combobox.is-searching .cs-search {
  display: block;
  padding: 0;
}

.partners__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  color: #18282b;
  margin: 0 0 32px;
}
@media (max-width: 1080px) {
  .partners__title {
    font-size: 32px;
  }
}
.partners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1080px) {
  .partners__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.partners__item {
  height: 90px;
  display: block;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.partners__item:hover .partners__link, .partners__item:hover .partners__logo {
  transform: scale(1.03);
}
.partners__link, .partners__logo {
  height: 70px;
  position: relative;
  display: block;
  outline: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.partners__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1024px) {
  .partners__grid {
    gap: 16px;
  }
  .partners__item {
    flex: 0 0 calc(33.333% - 16px);
    height: 80px;
  }
}
@media (max-width: 768px) {
  .partners {
    padding: 72px 0;
  }
  .partners__title {
    text-align: left;
    margin-bottom: 24px;
  }
  .partners__item {
    flex: 0 0 calc(50% - 12px);
    height: 70px;
  }
}

.ready-story-cta {
  text-align: center;
}
.ready-story-cta__inner {
  max-width: 720px;
  margin: 0 auto;
}
.ready-story-cta__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 56px;
  line-height: 77px;
  color: #183138;
  margin: 0 0 24px;
}
@media (max-width: 1080px) {
  .ready-story-cta__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
.ready-story-cta__subtitle {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  max-width: 442px;
  font-size: 16px;
  line-height: 28px;
  color: #232222;
  margin: 0 auto;
  margin-bottom: 0;
}
.ready-story-cta__text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #232222;
  max-width: 442px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.ready-story-cta__actions {
  margin-top: 20px;
  text-align: center;
}
.ready-story-cta__button {
  display: inline-block;
  padding: 12px 47px;
  border-radius: 4px;
  border: none;
  background-color: #E5603B;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s;
}
.ready-story-cta__button:hover {
  background-color: #F96B43;
}
.ready-story-cta {
  /* FORM STYLES */
}
.ready-story-cta__form {
  margin-top: 40px;
  text-align: left;
}
.ready-story-cta .trip-inquiry {
  margin-top: 0;
}
.ready-story-cta .trip-inquiry__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 16px;
}
.ready-story-cta .trip-inquiry__fields .wpcf7-select {
  display: none;
}
.ready-story-cta .trip-inquiry__field--full {
  grid-column: 1/-1;
}
.ready-story-cta .trip-inquiry__field--consent {
  grid-column: 1/-1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  color: #232222;
  margin-top: 8px;
}
.ready-story-cta .trip-inquiry__field--submit {
  grid-column: 1/-1;
  text-align: center;
  margin-top: 24px;
}
.ready-story-cta .trip-inquiry input[type=text],
.ready-story-cta .trip-inquiry input[type=email],
.ready-story-cta .trip-inquiry input[type=tel],
.ready-story-cta .trip-inquiry input[type=date],
.ready-story-cta .trip-inquiry select,
.ready-story-cta .trip-inquiry textarea,
.ready-story-cta .trip-inquiry .t-input,
.ready-story-cta .trip-inquiry .t-select,
.ready-story-cta .trip-inquiry .t-textarea {
  width: 100%;
  height: 33px;
  border-radius: 4px;
  border: 1px solid #232222;
  padding: 0 10px;
  font-size: 14px;
  line-height: 32px;
  color: #232222;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.ready-story-cta .trip-inquiry textarea,
.ready-story-cta .trip-inquiry .t-textarea {
  min-height: 200px;
  resize: vertical;
}
.ready-story-cta .trip-inquiry input::-moz-placeholder, .ready-story-cta .trip-inquiry textarea::-moz-placeholder {
  font-size: 14px;
  line-height: 32px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #232222;
}
.ready-story-cta .trip-inquiry input::placeholder,
.ready-story-cta .trip-inquiry textarea::placeholder {
  font-size: 14px;
  line-height: 32px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #232222;
}
.ready-story-cta {
  /* === CHECKBOX STIL + FIX === */
}
.ready-story-cta .trip-inquiry__field--consent input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0 8px 0 0;
  border-radius: 2px;
  border: 1px solid rgba(35, 34, 34, 0.9019607843);
  position: static !important;
  opacity: 1 !important;
  -webkit-appearance: auto !important;
     -moz-appearance: auto !important;
          appearance: auto !important;
  pointer-events: auto !important;
  cursor: pointer;
}
.ready-story-cta .trip-inquiry__field--consent.inner-form p,
.ready-story-cta .trip-inquiry__field--consent.inner-form label,
.ready-story-cta .trip-inquiry__field--consent.inner-form .wpcf7-list-item,
.ready-story-cta .trip-inquiry__field--consent.inner-form .wpcf7-list-item-label {
  pointer-events: auto !important;
  cursor: pointer;
}
.ready-story-cta .trip-inquiry .t-button,
.ready-story-cta .trip-inquiry input[type=submit] {
  display: inline-block;
  padding: 12px 47px;
  border-radius: 4px;
  border: none;
  background-color: #E5603B;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s;
}
.ready-story-cta .trip-inquiry .t-button:hover,
.ready-story-cta .trip-inquiry input[type=submit]:hover {
  background-color: #F96B43;
}
@media (max-width: 1080px) {
  .ready-story-cta .trip-inquiry__fields {
    grid-template-columns: 1fr;
  }
}
.ready-story-cta .custom-combobox {
  color: #232222;
  border: 1px solid #232222;
  border-radius: 4px;
}
.ready-story-cta .custom-combobox .cs-select .cs-selected {
  color: #232222 !important;
  font-size: 14px;
  line-height: 32px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.ready-story-cta .custom-combobox .cs-select .cs-right {
  border-bottom: 1px solid #232222;
  border-right: 1px solid #232222;
}
.ready-story-cta .custom-combobox .cs-dropdown {
  background: #ffffff;
  border: 1px solid #232222;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.ready-story-cta .custom-combobox .cs-option {
  font-size: 14px;
  line-height: 32px;
  transition: all 0.5s;
  padding: 0 10px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.ready-story-cta .custom-combobox .cs-option:hover {
  background: #ffffff;
  color: rgba(35, 34, 34, 0.9019607843);
}
.ready-story-cta .custom-combobox .cs-hilighted {
  background: #ffffff;
  color: rgba(35, 34, 34, 0.9019607843);
}
.ready-story-cta .cta-form-block .custom-combobox .cs-option:hover {
  background: #ffffff;
  color: rgba(35, 34, 34, 0.9019607843);
}
.ready-story-cta .custom-combobox .cs-hilighted {
  background: #ffffff;
  color: rgba(35, 34, 34, 0.9019607843);
}
.ready-story-cta .inner-form p {
  display: flex;
  gap: 5px;
  align-items: center;
}
.ready-story-cta .wpcf7-list-item {
  margin: 0;
}

.contact-page {
  background: #ffffff;
}
.contact-page .container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 40px;
}
@media (max-width: 1080px) {
  .contact-page .container {
    padding-right: 0;
  }
}
.contact-page__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  -moz-column-gap: 25px;
       column-gap: 25px;
  min-height: 708px;
}
.contact-page__image {
  min-height: 708px;
  position: relative;
  margin-left: 0;
}
.contact-page__image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  transition: transform 0.5s ease;
  z-index: 1;
}
.contact-page__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.contact-page__content {
  max-width: 608px;
  width: 100%;
  padding-top: 170px;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
}
.contact-page__title {
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 30px;
}
.contact-page__text {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 32px;
}
.contact-page__text p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 32px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.contact-page__text p + p {
  margin-top: 12px;
}
.contact-page {
  /* WRAP ZA FORMU */
}
.contact-page__form-wrap .wpcf7 form .wpcf7-form {
  text-align: left;
}
.contact-page__form-wrap .wpcf7 form .contact__fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-page__form-wrap .wpcf7 form .contact__field {
  width: 100%;
}
.contact-page__form-wrap .wpcf7 form {
  /* INPUTI + SELECTI */
}
.contact-page__form-wrap .wpcf7 form input[type=text],
.contact-page__form-wrap .wpcf7 form textarea,
.contact-page__form-wrap .wpcf7 form input[type=email],
.contact-page__form-wrap .wpcf7 form input[type=tel],
.contact-page__form-wrap .wpcf7 form select {
  height: 33px;
  color: #232222;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
  width: 100%;
  border: 1px solid #232222;
  padding: 10px 12px;
  border-radius: 4px;
  background-color: transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.contact-page__form-wrap .wpcf7 form input[type=text]::-moz-placeholder, .contact-page__form-wrap .wpcf7 form textarea::-moz-placeholder, .contact-page__form-wrap .wpcf7 form input[type=email]::-moz-placeholder, .contact-page__form-wrap .wpcf7 form input[type=tel]::-moz-placeholder, .contact-page__form-wrap .wpcf7 form select::-moz-placeholder {
  color: #232222;
}
.contact-page__form-wrap .wpcf7 form input[type=text]::placeholder,
.contact-page__form-wrap .wpcf7 form textarea::placeholder,
.contact-page__form-wrap .wpcf7 form input[type=email]::placeholder,
.contact-page__form-wrap .wpcf7 form input[type=tel]::placeholder,
.contact-page__form-wrap .wpcf7 form select::placeholder {
  color: #232222;
}
.contact-page__form-wrap .wpcf7 form input[type=text]:focus,
.contact-page__form-wrap .wpcf7 form textarea:focus,
.contact-page__form-wrap .wpcf7 form input[type=email]:focus,
.contact-page__form-wrap .wpcf7 form input[type=tel]:focus,
.contact-page__form-wrap .wpcf7 form select:focus {
  outline: none;
  border-color: none;
  box-shadow: 0;
  background-color: transparent;
}
.contact-page__form-wrap .wpcf7 form textarea {
  height: 204px;
}
.contact-page__form-wrap .wpcf7 form {
  /* SELECT – custom strelica */
}
.contact-page__form-wrap .wpcf7 form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../icons/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
  padding-right: 32px;
}
.contact-page__form-wrap .wpcf7 form {
  /* SUBMIT dugme */
}
.contact-page__form-wrap .wpcf7 form .join-community__field--submit {
  text-align: center;
  margin-top: 14px;
}
.contact-page__form-wrap .wpcf7 form button,
.contact-page__form-wrap .wpcf7 form input[type=submit] {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  background-color: #E5603B;
  color: #fff;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  transition: all 0.5s;
}
.contact-page__form-wrap .wpcf7 form button:hover,
.contact-page__form-wrap .wpcf7 form input[type=submit]:hover {
  background-color: #F96B43;
}
.contact-page__form-wrap .wpcf7 form p {
  margin-bottom: 0;
}
.contact-page__form-wrap .wpcf7 form {
  /* CF7 poruke / errori */
}
.contact-page__form-wrap .wpcf7 form .wpcf7-not-valid-tip {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
}
.contact-page__form-wrap .wpcf7 form .wpcf7-response-output {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  margin-top: 16px;
  border-radius: 4px;
  padding: 10px 12px;
}
@media (max-width: 900px) {
  .contact-page__inner {
    grid-template-columns: 1fr;
  }
  .contact-page__content {
    padding: 40px 24px;
  }
  .contact-page__form {
    grid-template-columns: 1fr;
  }
}

.about-founder-story {
  background-color: #ffffff;
}
.about-founder-story__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-founder-story__title {
  text-align: center;
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 56px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 767px) {
  .about-founder-story__title {
    font-size: 32px;
  }
}
.about-founder-story__title-highlight {
  color: #c78f6b;
}
.about-founder-story__card {
  display: grid;
  grid-template-columns: minmax(0, 397px) minmax(0, 1fr);
  background-color: #f4f2ea;
  max-height: 478px;
  height: 100%;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media (max-width: 1080px) {
  .about-founder-story__card {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
    max-height: 100%;
  }
}
@media (max-width: 767px) {
  .about-founder-story__card {
    grid-template-columns: 1fr;
    max-height: 100%;
  }
}
.about-founder-story__image {
  max-height: 478px;
  height: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .about-founder-story__image {
    height: 400px;
  }
}
.about-founder-story__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
}
.about-founder-story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 70px;
  padding-right: 70px;
  padding-bottom: 60px;
}
@media (max-width: 1080px) {
  .about-founder-story__content {
    padding: 30px;
  }
}
.about-founder-story__text {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 32px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-founder-story__text p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-founder-story__text p:last-child {
  margin-bottom: 0;
}
.about-founder-story__name {
  font-size: 20px;
  line-height: 32px;
  margin-top: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.about-founder-story__name strong {
  font-size: 20px;
  line-height: 32px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-right: -5px;
}
.about-founder-story__signature img {
  max-height: 60px;
  width: auto;
  display: block;
}

.about-mission {
  background-color: #ffffff;
  padding: 80px 0 100px;
}
.about-mission__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-mission__title {
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 24px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 767px) {
  .about-mission__title {
    font-size: 32px;
  }
}
.about-mission__subtitle {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 40px;
  font-style: italic;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.about-mission__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 56px;
       column-gap: 56px;
  row-gap: 24px;
}
.about-mission__column {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-mission__column p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-mission__column p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .about-mission {
    padding: 60px 0 80px;
  }
  .about-mission__columns {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}

.about-benefits {
  background-color: #ffffff;
  padding: 80px 0 120px;
}
.about-benefits__title {
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 48px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 767px) {
  .about-benefits__title {
    font-size: 32px;
  }
}
.about-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 20px;
}
.about-benefits__card {
  background-color: #6f8f92;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-benefits__icon {
  margin-bottom: 16px;
}
.about-benefits__icon img {
  display: block;
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-benefits__card-title {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-benefits__card-text {
  font-size: 16px;
  line-height: 28px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-benefits__card-text p {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .about-benefits {
    padding: 60px 0 80px;
  }
  .about-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .about-benefits__grid {
    grid-template-columns: 1fr;
  }
  .about-benefits__card {
    padding: 24px;
  }
  .about-benefits__title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 32px;
  }
}

.about-team {
  background-color: #ffffff;
  padding: 80px 0 120px;
}
.about-team__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.about-team__title {
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 24px;
  color: #231F20;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 767px) {
  .about-team__title {
    font-size: 32px;
  }
}
.about-team__intro {
  max-width: 721px;
  margin: 0 auto 67px;
  font-size: 16px;
  color: #231F20;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-team__intro p {
  margin-bottom: 16px;
}
.about-team__intro p:last-child {
  margin-bottom: 0;
}
.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
  text-align: left;
}
.about-team__card {
  background-color: #f4f2ea;
  display: flex;
  flex-direction: column;
  height: 522px;
}
.about-team__photo {
  max-height: 354px;
  height: 100%;
  background-color: #ffffff;
}
.about-team__photo img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-team__card-info {
  padding: 20px;
}
.about-team__name {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.about-team__role {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-team__signature {
  height: 66px;
  margin-left: auto;
}
.about-team__signature img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}
@media (max-width: 1024px) {
  .about-team {
    padding: 60px 0 90px;
  }
  .about-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .about-team__grid {
    grid-template-columns: 1fr;
  }
  .about-team__card-info {
    padding: 16px 18px 20px;
  }
}

.about-partner {
  background-color: #ffffff;
  padding: 80px 0 120px;
}
.about-partner__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-partner__title {
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 24px;
  color: #231F20;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  max-width: 713px;
}
@media (max-width: 767px) {
  .about-partner__title {
    font-size: 32px;
    line-height: 42px;
  }
}
.about-partner__subtitle {
  font-size: 20px;
  line-height: 33px;
  margin-bottom: 40px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-style: italic;
  max-width: 755px;
}
.about-partner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 397px);
  -moz-column-gap: 94px;
       column-gap: 94px;
  align-items: stretch;
}
.about-partner__content {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-partner__content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-partner__content p:last-child {
  margin-bottom: 0;
}
.about-partner__logo-card {
  background-color: #f4f2ea;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 222px;
}
.about-partner__logo-inner {
  height: 149px;
  width: 291px;
  position: relative;
}
.about-partner__logo-inner img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 900px) {
  .about-partner {
    padding: 60px 0 80px;
  }
  .about-partner__inner {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .about-partner__logo-card {
    min-height: 200px;
  }
}

.services-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  display: flex;
  height: 100vh;
}
@media (max-width: 1080px) {
  .services-hero {
    background-attachment: scroll;
    height: 70vh;
  }
}
.services-hero::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  transition: transform 0.5s ease;
  z-index: 0;
}
.services-hero {
  /* tamni sloj preko slike */
}
.services-hero .services-hero__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
}
.services-hero {
  /* unutrašnji wrap sa tekstom */
}
.services-hero .services-hero__inner {
  height: 100%;
  padding: 40px 24px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fefefe;
}
.services-hero {
  /* naslov + animacija kao na home hero (ako koristiš JS) */
}
.services-hero .services-hero__title {
  font-size: 88px;
  line-height: 1.1;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  will-change: transform, opacity;
}
@media (max-width: 900px) {
  .services-hero .services-hero {
    min-height: 520px;
  }
  .services-hero .services-hero__title {
    font-size: 40px;
  }
  .services-hero .services-hero__inner {
    padding: 32px 20px 48px;
  }
}

.services-intro {
  background-color: #ffffff;
  padding: 80px 0 80px;
}
.services-intro__container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.services-intro__title {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 24px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-style: italic;
}
.services-intro__text {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.services-intro__text p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 900px) {
  .services-intro {
    padding: 60px 0;
  }
}

/* ----------------------------------------
   SERVICES GRID
----------------------------------------- */
.services-grid__title {
  font-size: 40px;
  line-height: 52px;
  text-align: right;
  margin-bottom: 40px;
}
@media (max-width: 1080px) {
  .services-grid__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
.services-grid__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 1024px) {
  .services-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-grid__items {
    grid-template-columns: 1fr;
  }
}
.services-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.services-grid__image {
  display: block;
  position: relative;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.services-grid__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.3;
  transition: transform 0.5s ease;
}
.services-grid__image:hover {
  transform: scale(1.03);
}
.services-grid__label {
  position: absolute;
  left: 50%;
  bottom: 30%;
  transform: translate(-50%, -30%);
  color: #fff;
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  pointer-events: none;
  white-space: nowrap;
}
.services-grid__fallback {
  padding: 40px 24px;
  border-radius: 16px;
  background: #ddd;
  text-align: center;
}

/* ----------------------------------------
   SERVICES TRIPS (FILTERS)
----------------------------------------- */
.services-trips {
  /* FILTER WRAP — mora biti iznad grida */
}
.services-trips__filters {
  flex-wrap: initial !important;
  position: relative;
  z-index: 10; /* dropdown iznad kartica */
}
.services-trips {
  /* GRID ispod filtera */
}
.services-trips__grid {
  position: relative;
  z-index: 1;
}
.services-trips {
  /* CUSTOM SELECT (Combobox plugin) */
}
.services-trips .custom-combobox {
  position: relative;
  width: 186px;
  height: 33px;
  color: #232222 !important;
  font-size: 14px;
  border: 1px solid #232222 !important;
  border-radius: 4px; /* popravljen border radius */
  /* SELECTED ITEM */
}
.services-trips .custom-combobox .cs-select .cs-selected {
  height: 33px;
  line-height: 32px;
  padding: 0 10px;
  font-size: 14px;
  color: #232222 !important;
}
.services-trips .custom-combobox {
  /* ICON (arrow right/bottom) */
}
.services-trips .custom-combobox .cs-right {
  border-right: 1px solid #232222 !important;
  border-bottom: 1px solid #232222 !important;
}
.services-trips .custom-combobox .services-trips__select {
  display: none;
}
.services-trips .custom-combobox {
  /* DROPDOWN LISTA */
}
.services-trips .custom-combobox .cs-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #232222;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 20 !important; /* najbitnije */
  padding: 4px 0;
}
.services-trips .custom-combobox {
  /* STAVKE U DROPDOWNU */
}
.services-trips .custom-combobox .cs-option {
  padding: 6px 12px;
  font-size: 12px;
  background-color: #fff;
  color: #232222;
  border-bottom: 1px solid #232222;
  cursor: pointer;
}
.services-trips .custom-combobox .cs-option:last-child {
  border-bottom: 0;
}
.services-trips .custom-combobox .cs-option:hover, .services-trips .custom-combobox .cs-option.cs-highlighted {
  background: #f4f2ea;
  color: #232222;
}
.services-trips .custom-combobox {
  /* "All destinations" NE SME BITI SKRIVEN */
}
.services-trips .custom-combobox .cs-dropdown .cs-option[value=""],
.services-trips .custom-combobox .cs-dropdown .cs-option[data-value=""] {
  display: block !important;
}

.trip-hero {
  position: relative;
  color: #13282f;
}
.trip-hero__bg {
  display: flex;
  align-items: flex-end;
  background-size: cover;
  width: 100%;
  min-height: 825px;
  background-position: center;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 767px) {
  .trip-hero__bg {
    min-height: 50dvh;
  }
}
.trip-hero__title {
  font-size: 32px;
}
.trip-hero__inner {
  width: 100%;
  max-width: 100%;
  position: absolute;
  bottom: 0%;
  z-index: 2;
  transform: translateY(-12%);
  padding-left: 0;
}
@media (max-width: 767px) {
  .trip-hero__inner {
    padding-left: 20px;
    transform: translateY(-50px);
    position: relative;
  }
}
.trip-hero__content-box {
  max-width: 437px;
  padding: 40px;
  background-color: #f4f2ea;
}
.trip-hero__location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 24px;
}
.trip-hero__location-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.trip-hero__location-text {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.trip-hero__intro p {
  font-size: 14px;
  line-height: 21px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.trip-hero__starting {
  margin-top: 32px;
  font-size: 16px;
  line-height: 21px;
}
.trip-hero__starting-label {
  margin-right: 4px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.trip-hero__starting-amount {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.trip-hero__btn {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin-top: 24px;
  display: inline-block;
  padding: 16px 48px;
  background: #d96a33;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  width: 100%;
  border-radius: 4px;
  transition: all 0.5s;
}
.trip-hero__btn:hover {
  background-color: #f96b43;
}
.trip-hero {
  /* ------- SLIDER ------- */
}
.trip-hero__slider {
  max-width: 437px;
  width: 100%;
  overflow: hidden;
}
.trip-hero__slider .slick-list .slick-track {
  display: flex !important;
}
.trip-hero .inner-arrows {
  max-width: 437px;
  text-align: right;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .trip-hero .inner-arrows {
    display: none;
  }
}
.trip-hero__arrow {
  background: #f4f2ea;
  border: none;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.trip-hero__arrow--prev {
  margin-right: 10px;
}
.trip-hero__signature {
  position: absolute;
  right: 50px;
  bottom: -36px;
}
@media (max-width: 767px) {
  .trip-hero__signature {
    display: none;
  }
}
.trip-hero__signature img {
  max-height: 80px;
  height: auto;
  width: auto;
}
@media (max-width: 767px) {
  .trip-hero__signature img {
    max-height: 50px;
  }
}

.trip-hero__arrow.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.single-icons-list__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .single-icons-list__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
}
.single-icons-list__icon img {
  width: 48px;
  height: auto;
  margin-bottom: 8px;
}
.single-icons-list__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #183138;
}
@media (max-width: 767px) {
  .single-icons-list__title {
    font-size: 20px;
  }
}
.single-icons-list__text {
  font-size: 16px;
  color: #232222;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  max-width: 240px;
  margin: 0 auto;
}

.single-included__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: baseline;
}
@media (max-width: 900px) {
  .single-included__grid {
    grid-template-columns: 1fr;
  }
}
.single-included__box {
  padding: 40px;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .single-included__box {
    padding: 28px 24px;
  }
}
.single-included__box ul {
  margin: 16px 0 0;
  padding-left: 20px;
}
.single-included__box li {
  margin-bottom: 6px;
  list-style-type: disc;
  line-height: 1.6;
}
.single-included__box--included {
  background-color: #6c8f91;
  color: #fff;
}
.single-included__box--included a {
  color: inherit;
}
.single-included__box--included li::marker {
  color: #fff;
}
.single-included__box--not-included {
  border: 1px solid #e46a34;
  background-color: #fff;
}
.single-included__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
}
.single-included__title--accent {
  color: #e46a34;
}
.single-included__content {
  font-size: 16px;
}

.single-gallery {
  overflow: hidden;
}
.single-gallery__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  color: #18282b;
  margin: 0 0 32px;
}
@media (max-width: 767px) {
  .single-gallery__title {
    font-size: 32px;
  }
}
.single-gallery .container-packages {
  max-width: 1366px;
  width: 100%;
  padding-left: 80px;
  padding-right: 0;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .single-gallery .container-packages {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.single-gallery__inner {
  position: relative;
}
.single-gallery .home-packages__arrows {
  position: absolute;
  left: 30px;
  top: 0;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}
@media (max-width: 1080px) {
  .single-gallery .home-packages__arrows {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .single-gallery .home-packages__arrows {
    top: auto;
    bottom: -58px;
    left: 0;
    flex-direction: row-reverse;
    transform: translate(0, 0);
  }
}
.single-gallery__slider {
  position: relative;
  margin-left: 80px;
}
.single-gallery__slider::before {
  content: "";
  display: block;
  background-color: #ffffff;
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 100%;
  z-index: 4;
}
@media (max-width: 1080px) {
  .single-gallery__slider {
    margin-left: 60px;
  }
}
@media (max-width: 767px) {
  .single-gallery__slider {
    margin-left: 0;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }
}
.single-gallery__slider .slick-track {
  display: flex;
}
.single-gallery {
  /* NEMA fiksne širine – slick koristi slidesToShow */
}
.single-gallery__slide {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 20px;
  width: 397px;
  max-width: 100%;
}
.single-gallery__image {
  border-radius: 8px;
  overflow: hidden;
}
.single-gallery__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-gallery {
  /* Dimenzije preko aspect-ratio da liče na 397×574 / 398×275 */
}
.single-gallery__slide--one .single-gallery__image {
  aspect-ratio: 397/574;
}
.single-gallery__slide--two .single-gallery__image {
  aspect-ratio: 398/275;
}

.single-program__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  color: #18282b;
  margin: 0 0 32px;
}
@media (max-width: 767px) {
  .single-program__title {
    font-size: 32px;
  }
}
.single-program .container-packages {
  max-width: 1286px;
  width: 100%;
  padding-left: 40px;
  padding-right: 0;
  margin: 0 auto;
  margin-right: 0;
}
@media (max-width: 767px) {
  .single-program .container-packages {
    padding-left: 20px;
    padding-right: 0;
  }
}
.single-program__list {
  margin-bottom: 60px;
}
.single-program__item {
  margin-bottom: 16px;
}
.single-program__item:last-child {
  margin-bottom: 0;
}
.single-program__item ul, .single-program__item ol {
  list-style: initial;
  margin-left: 1.2em;
}
.single-program__item-inner {
  background-color: #F2F0E7;
  border-radius: 4px;
  padding: 24px 32px;
  border: 1px solid #F2F0E7;
}
@media (max-width: mobilepx) {
  .single-program__item-inner {
    padding: 20px;
  }
}
.single-program__item-inner h4, .single-program__item-inner strong {
  font-weight: 700;
  color: #18282b;
}
.single-program__item-inner p {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.6;
  color: #18282b;
}
.single-program__bottom {
  text-align: center;
}
.single-program__subtitle {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: #18282b;
  margin: 0 0 24px;
}
@media (max-width: 767px) {
  .single-program__subtitle {
    font-size: 16px;
    line-height: 28px;
  }
}
.single-program__link {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: underline;
  color: #e2582a;
  cursor: pointer;
  transition: all, 0.5s;
}
.single-program__link:hover {
  color: #F96B43;
}

.single-faq {
  background-color: #f4efe4;
  padding: 100px 0;
}
.single-faq .container-packages {
  max-width: 1286px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .single-faq .container-packages {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.single-faq__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 64px;
  color: #18282b;
}
@media (max-width: 767px) {
  .single-faq__title {
    font-size: 32px;
  }
}
.single-faq__title span {
  color: #c89a7a;
}
.single-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 120px;
       column-gap: 120px;
  row-gap: 56px;
}
@media (max-width: 767px) {
  .single-faq__grid {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.single-faq__question {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.3;
  color: #000000;
  margin: 0 0 16px;
}
.single-faq__answer {
  font-size: 16px;
  line-height: 1.7;
  color: #231F20;
}
.single-faq__answer p {
  margin: 0 0 10px;
}
.single-faq__answer p:last-child {
  margin-bottom: 0;
}
.single-faq__answer a {
  text-decoration: underline;
}

.single-related {
  padding: 80px 0;
}
.single-related__title, .single-related__heading {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  color: #183138;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .single-related__title, .single-related__heading {
    font-size: 32px;
  }
}
.single-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 30px;
}
@media (max-width: 767px) {
  .single-related__grid {
    grid-template-columns: 1fr;
  }
}
.single-related {
  /* ------------------------------------------------------------------
   * NOVO: generičke klase za item / thumb / content
   * (koristimo ih ako markup ima single-related__item, __thumb, __content…)
   * Stilovi su zasnovani na postojećem .trip-card / .related-card izgledu.
   * ------------------------------------------------------------------ */
}
.single-related__item {
  border-radius: 8px;
  overflow: hidden;
}
.single-related__thumb {
  position: relative;
  display: block;
  height: 440px;
}
.single-related__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: rgba(0, 0, 0, 0.29);
  z-index: 0;
}
.single-related__thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-related__content {
  margin-top: 16px;
}
.single-related__post-title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.single-related__excerpt {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #4A4A4A;
  margin-top: 8px;
}
.single-related {
  /* ------------------------------------------------------------------
   * POSTOJEĆI izgled za .trip-card (ako blok i dalje koristi taj markup)
   * ------------------------------------------------------------------ */
}
.single-related__grid .trip-card {
  border-radius: 8px;
  overflow: hidden;
}
.single-related__grid .trip-card__image-wrap {
  position: relative;
  display: block;
  height: 440px;
}
.single-related__grid .trip-card__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: rgba(0, 0, 0, 0.29);
  z-index: 0;
}
.single-related__grid .trip-card__image-wrap img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-related__grid .trip-card__image-wrap .trip-card__badge--promotion {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  background-color: #E5603B;
  padding: 5px 10px;
  position: absolute;
  top: 30px;
  right: 0;
}
.single-related__grid .trip-card__image-wrap .trip-card__badge--favourite {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  background-color: #B59280;
  padding: 5px 10px;
  position: absolute;
  top: 30px;
  right: 0;
}
.single-related__grid .trip-card__title {
  color: #fff;
  position: absolute;
  bottom: -30px;
  font-size: 32px;
  padding: 20px;
}
@media (max-width: 767px) {
  .single-related__grid .trip-card__title {
    font-size: 28px;
  }
}
.single-related__grid .trip-card__line {
  margin-top: 10px;
}
.single-related__grid .trip-card__line span {
  font-size: 16px;
  line-height: 21px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-style: italic;
}
.single-related__grid .trip-card__line span strong {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.single-related__grid .trip-card__price p {
  font-size: 16px;
  line-height: 21px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.related-card__image {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 440px;
}
.related-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-card__image .related-card__title {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.related-card__meta {
  margin-top: 16px;
}
.related-card__info {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #4A4A4A;
  margin: 0 0 6px;
}
.related-card__price {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #232222;
}
.related-card__price strong {
  font-weight: 700;
}

.stories-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 10px;
}
.stories-hero__left {
  position: relative;
  overflow: hidden;
}
.stories-hero__left::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(24, 49, 56, 0.85) 0%, rgba(24, 49, 56, 0) 0%, rgba(24, 49, 56, 0) 85%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(24, 49, 56, 0) 15%, rgba(24, 49, 56, 0.9) 100%);
}
.stories-hero__right {
  display: grid;
  grid-template-rows: auto auto;
  gap: 10px;
}
.stories-hero__right-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.stories-hero__image {
  position: relative;
  overflow: hidden;
}
.stories-hero__image-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
}
.stories-hero__image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stories-hero__image--left {
  position: absolute;
  inset: 0;
}
.stories-hero__image--left .stories-hero__image-wrapper {
  position: absolute;
  inset: 0;
  padding-top: 0;
  height: 100%;
}
.stories-hero__image--right-top .stories-hero__image-wrapper {
  height: 50vh;
}
.stories-hero__image--right-bottom-left .stories-hero__image-wrapper, .stories-hero__image--right-bottom-right .stories-hero__image-wrapper {
  height: 50vh;
}
.stories-hero__content {
  position: absolute;
  z-index: 2;
  max-width: 452px;
  padding: 0;
  color: #ffffff;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -70%);
}
.stories-hero {
  /* ==== SCROLL FADE-UP ANIMACIJA ==== */
}
.stories-hero__content.scroll-fade-up {
  opacity: 0;
  transform: translate(-50%, -60%);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.stories-hero__content.scroll-fade-up.is-inview {
  opacity: 1;
  transform: translate(-50%, -70%);
}
.stories-hero {
  /* ================================== */
}
.stories-hero__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 56px;
  line-height: 77px;
  margin: 0 0 24px;
}
.stories-hero__text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}
@media (max-width: 1024px) {
  .stories-hero__inner {
    grid-template-columns: 1fr;
  }
  .stories-hero__left {
    margin-bottom: 24px;
    padding-top: 110%;
  }
  .stories-hero__right {
    display: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .stories-hero__content {
    position: relative;
    max-width: none;
    padding: 60px 40px;
    left: auto;
    top: auto;
    transform: none;
  }
  .stories-hero__content.scroll-fade-up {
    transform: translateY(20px);
  }
  .stories-hero__content.scroll-fade-up.is-inview {
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .stories-hero .stories-hero__right {
    display: none;
  }
  .stories-hero__left {
    padding-top: 97%;
  }
  .stories-hero__right-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    display: none;
  }
  .stories-hero__content {
    padding: 40px 24px;
  }
  .stories-hero__title {
    font-size: 32px;
    line-height: 1.2;
  }
  .stories-hero__text {
    font-size: 18px;
    line-height: 28px;
  }
}

.stories-monthly {
  /* default: right (kao u dizajnu) */
}
.stories-monthly__header {
  text-align: right;
  margin-bottom: 24px;
}
.stories-monthly__section-title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 52px;
  color: #183138;
  margin: 0 0 40px;
}
@media (max-width: 1080px) {
  .stories-monthly__section-title {
    font-size: 32px;
    line-height: 42px;
  }
}
.stories-monthly__card {
  border-radius: 4px;
  overflow: hidden;
  background-color: transparent;
  margin-bottom: 40px;
}
.stories-monthly__image-wrap {
  width: 100%;
  height: 407px;
  overflow: hidden;
  position: relative;
}
.stories-monthly__image-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  transition: transform 0.5s ease;
  z-index: 1;
}
.stories-monthly__image-wrap:hover img {
  transform: scale(1.03);
}
.stories-monthly__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
.stories-monthly__author {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  color: #231F20;
  font-style: italic;
  margin: 0 0 12px;
}
.stories-monthly__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 1.3;
  color: #231F20;
  margin: 0 0 18px;
}
.stories-monthly__excerpt {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #231F20;
  margin: 0 0 24px;
  max-width: 860px;
}
.stories-monthly__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.stories-monthly__button {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  border: none;
  background-color: #e5603b;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.stories-monthly__button:hover {
  background-color: #f96b43;
}
.stories-monthly__date {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  color: #183138;
}
.stories-monthly__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1080px) {
  .stories-monthly__grid {
    grid-template-columns: 1fr;
  }
}
.stories-monthly__content {
  background-color: #F2F0E7;
  padding: 30px 40px 30px;
}
.stories-monthly__content .stories-monthly__title {
  font-size: 24px;
  line-height: 32px;
}
.stories-monthly__content .stories-monthly__link {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: none;
}
.stories-monthly {
  /* ---------------------------
     Poravnanje naslova (ACF select)
     --------------------------- */
}
.stories-monthly.stories-monthly--title-left .stories-monthly__header {
  text-align: left;
}
.stories-monthly.stories-monthly--title-left .stories-monthly__section-title {
  margin-left: 0;
  margin-right: auto;
}
.stories-monthly.stories-monthly--title-right .stories-monthly__header {
  text-align: right;
}
.stories-monthly.stories-monthly--title-right .stories-monthly__section-title {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 768px) {
  .stories-monthly {
    padding: 80px 0;
  }
  .stories-monthly__content {
    padding: 28px 20px 24px;
  }
  .stories-monthly__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.your-stories {
  overflow: hidden;
}
.your-stories .container-stories {
  max-width: 1366px;
  width: 100%;
  padding-left: 40px;
  padding-right: 0;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .your-stories .container-stories {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .your-stories .container-stories {
    padding-left: 20px;
    padding-right: 0;
  }
}
.your-stories__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 1080px) {
  .your-stories__title {
    font-size: 32px;
  }
}
.your-stories__outer {
  max-width: 1286px;
  margin: 0 auto;
  position: relative;
}
.your-stories__arrows {
  position: absolute;
  left: 0;
  top: 53px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}
@media (max-width: 1080px) {
  .your-stories__arrows {
    top: auto;
    bottom: -87px;
    flex-direction: row-reverse;
  }
}
.your-stories__arrow {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.your-stories__arrow::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-image: url("../icons/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.your-stories__arrow--next::before {
  transform: rotate(180deg);
}
.your-stories__arrow--prev::before {
  transform: rotate(0deg);
}
.your-stories__arrow:hover::before {
  background-image: url("../icons/arrow-orange.png");
}
.your-stories__slider {
  position: relative;
  margin-left: 80px;
}
.your-stories__slider::before {
  content: "";
  display: block;
  background-color: #ffffff;
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 100%;
  z-index: 4;
}
@media (max-width: 1080px) {
  .your-stories__slider {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .your-stories__slider {
    margin-left: 0;
  }
}
.your-stories__slider .slick-track {
  display: flex;
  gap: 20px;
}
.your-stories__slide {
  background: #f5f3eb;
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 503px;
  max-width: 80vw;
  flex: 0 0 503px;
}
.your-stories__image-wrap {
  overflow: hidden;
  height: 522px;
  outline: 0;
  position: relative;
}
@media (max-width: 1080px) {
  .your-stories__image-wrap {
    height: auto;
    padding-top: 75%;
  }
}
@media (max-width: 767px) {
  .your-stories__image-wrap {
    padding-top: 75%;
  }
}
.your-stories__image-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  transition: transform 0.5s ease;
}
.your-stories__image-wrap:hover .your-stories__image {
  transform: scale(1.03);
}
.your-stories__image-wrap:hover::before {
  opacity: 0.4;
  transform: scale(1.03);
}
.your-stories__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}
.your-stories__content {
  padding: 32px 28px;
}
.your-stories__post-title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 22px;
  margin-bottom: 12px;
}
.your-stories__excerpt {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 24px;
}
.your-stories__meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-style: italic;
}
.your-stories__inner {
  margin-left: 80px;
}
@media (max-width: 1080px) {
  .your-stories__inner {
    margin-left: 0;
  }
}

.story-text-block__inner {
  max-width: 800px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #232222;
}
.story-text-block__inner p {
  margin: 0 0 20px;
}
.story-text-block__inner a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  color: inherit;
}
.story-text-block__inner a:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .story-text-block {
    padding: 60px 0 80px;
  }
  .story-text-block__inner {
    font-size: 16px;
  }
}

.story-gallery .story-gallery__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .story-gallery .story-gallery__grid {
    gap: 10px;
  }
}
.story-gallery .story-gallery__row {
  display: grid;
  gap: 20px;
}
@media (max-width: 767px) {
  .story-gallery .story-gallery__row {
    gap: 10px;
  }
}
@media (max-width: 640px) {
  .story-gallery .story-gallery__row {
    grid-template-columns: auto !important;
  }
}
.story-gallery {
  /* NEPARNI REDOVI – 30% / 70% */
}
.story-gallery .story-gallery__row--1,
.story-gallery .story-gallery__row--3,
.story-gallery .story-gallery__row--5 {
  grid-template-columns: 30% 68%;
}
.story-gallery {
  /* PARNI REDOVI – 70% / 30% */
}
.story-gallery .story-gallery__row--2,
.story-gallery .story-gallery__row--4,
.story-gallery .story-gallery__row--6 {
  grid-template-columns: 60% 38%;
}
.story-gallery .story-gallery__item {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding-top: 60.4%;
  text-decoration: none;
}
.story-gallery .story-gallery__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  transition: transform 0.5s ease;
  z-index: 1;
}
.story-gallery .story-gallery__item:hover img {
  transform: scale(1.03);
}
.story-gallery .story-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  outline: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.section-image-text-rows--bg-white .image-text-row {
  background-color: #FFF7E6;
}
.section-image-text-rows--bg-cream .image-text-row {
  background-color: #F2F0E7;
}
.section-image-text-rows--bg-cream .image-text-row__heading {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
}
.section-image-text-rows--bg-cream .image-text-row__text ul li {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.section-image-text-rows--bg-cream .image-text-row {
  height: auto;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.6fr);
  align-items: stretch;
}
.section-image-text-rows--bg-cream .image-text-row__media {
  min-height: 260px;
}
.section-image-text-rows--bg-cream .image-text-row--left {
  grid-template-columns: 692px 1fr;
}
@media (max-width: 1080px) {
  .section-image-text-rows--bg-cream .image-text-row--left {
    grid-template-columns: 1fr;
  }
}
.section-image-text-rows--bg-cream .image-text-row--right {
  grid-template-columns: 1fr 692px;
}
@media (max-width: 1080px) {
  .section-image-text-rows--bg-cream .image-text-row--right {
    grid-template-columns: 1fr;
  }
}
.section-image-text-rows--bg-cream .image-text-row__content {
  padding: 32px 40px;
}
.section-image-text-rows--bg-cream .image-text-rows__subtitle {
  font-size: 20px;
  line-height: 32px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.section-image-text-rows--bg-dark {
  background-color: #1a2429;
  color: #ffffff;
}
.section-image-text-rows--bg-dark .image-text-row__heading,
.section-image-text-rows--bg-dark .image-text-rows__title {
  color: #ffffff;
}
.section-image-text-rows .image-text-rows__header {
  margin-bottom: 40px;
  text-align: center;
}
.section-image-text-rows .image-text-rows__title {
  font-size: 40px;
  color: #231F20;
  margin: 0 0 12px;
}
@media (max-width: 767px) {
  .section-image-text-rows .image-text-rows__title {
    font-size: 32px;
    text-align: left;
  }
}
.section-image-text-rows .image-text-rows__subtitle {
  margin: 0;
}
.section-image-text-rows--title-left .image-text-rows__header {
  text-align: left;
}
.section-image-text-rows--title-right .image-text-rows__header {
  text-align: right;
}
.section-image-text-rows .image-text-rows__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-image-text-rows .image-text-rows__footer {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin-top: 32px;
  text-align: center;
  font-style: italic;
  color: #231F20;
  font-size: 20px;
  line-height: 1.6;
}

.image-text-row {
  height: 354px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
}
.image-text-row--bg-light {
  background-color: #FFF7E6;
}
.image-text-row--bg-alt {
  background-color: #F2F0E7;
}
.image-text-row__media {
  overflow: hidden;
  position: relative;
}
.image-text-row__media::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  transition: transform 0.5s ease;
  z-index: 1;
}
.image-text-row__media:hover img {
  transform: scale(1.03);
}
.image-text-row__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
.image-text-row__content {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.image-text-row__heading {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin: 0 0 16px;
}
.image-text-row__text {
  margin-bottom: 24px;
}
.image-text-row__text ul {
  padding-left: 18px;
  margin: 0 0 16px;
}
.image-text-row__text p {
  margin: 0 0 8px;
}
.image-text-row__btn {
  max-width: 185px;
  display: inline-block;
  padding: 16px 20px;
  border-radius: 4px;
  border: none;
  background-color: #e5603b;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.25s ease;
  text-align: center;
}
.image-text-row__btn:hover {
  background-color: #f96b43;
}
.image-text-row--right {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}
.image-text-row--right .image-text-row__media {
  order: 2;
}
.image-text-row--right .image-text-row__content {
  order: 1;
}
.image-text-row--crafted .image-text-row__text p {
  max-width: 320px;
}
.image-text-row--insiders .image-text-row__text ul {
  list-style: disc;
}
@media (max-width: 900px) {
  .image-text-row {
    grid-template-columns: 1fr;
    height: auto;
  }
  .image-text-row--right .image-text-row__media,
  .image-text-row--right .image-text-row__content {
    order: initial;
  }
  .image-text-row__content {
    padding: 24px 20px;
  }
}

.insider-intro {
  text-align: center;
}
.insider-intro__header {
  margin: 0 auto 64px;
}
.insider-intro__title {
  font-size: 40px;
  text-align: center;
  color: #183138;
  margin: 0 0 40px;
}
@media (max-width: 1080px) {
  .insider-intro__title {
    font-size: 32px;
  }
}
.insider-intro__subtitle {
  font-size: 20px;
  text-align: center;
  line-height: 32px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-style: italic;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .insider-intro__subtitle {
    font-size: 16px;
    line-height: 28px;
  }
}
.insider-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 48px;
  align-items: baseline;
}
@media (max-width: 900px) {
  .insider-intro__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.insider-intro__item {
  max-width: 320px;
  margin: 0 auto;
}
.insider-intro__icon {
  margin-bottom: 24px;
}
.insider-intro__icon img {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: auto;
}
.insider-intro__item-title {
  font-size: 24px;
  color: #183138;
  margin: 0 0 12px;
}
.insider-intro__item-text {
  font-size: 16px;
  line-height: 28px;
  color: #183138;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}
.insider-intro__cta {
  text-align: center;
}
.insider-intro__btn {
  display: inline-block;
  padding: 12px 47px;
  border-radius: 4px;
  border: none;
  background-color: #E5603B;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s;
}
.insider-intro__btn:hover {
  background-color: #F96B43;
}

.featured-slider {
  overflow: hidden;
  padding-bottom: 0;
}
.featured-slider .container {
  max-width: 1286px;
  width: 100%;
  padding-left: 40px;
  padding-right: 0;
  margin: 0 auto;
  margin-right: 0;
}
.featured-slider {
  /* HEADER
  --------------------------------------------- */
}
.featured-slider__header {
  text-align: left;
  margin-bottom: 40px;
}
.featured-slider__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  color: #18282b;
  margin: 0 0 12px;
}
@media (max-width: 1080px) {
  .featured-slider__title {
    font-size: 32px;
  }
}
.featured-slider__subtitle {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #231f20;
  margin: 0;
  max-width: 760px;
  margin-right: auto;
}
.featured-slider__subtitle p {
  margin-bottom: 37pxx;
}
.featured-slider {
  /* poravnanje naslova / podnaslova po text_side */
}
.featured-slider.featured-slider--text-left .featured-slider__header {
  max-width: 1286px;
  width: 100%;
  text-align: left;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  margin-left: -30px;
}
@media (min-width: 1512px) {
  .featured-slider.featured-slider--text-left .featured-slider__header {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
  }
}
@media (max-width: 1080px) {
  .featured-slider.featured-slider--text-left .featured-slider__header {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0;
  }
}
.featured-slider.featured-slider--text-left .container {
  max-width: 1286px;
  width: 100%;
  padding-left: 40px;
  padding-right: 0;
  margin: 0 auto;
  margin-right: 0;
}
@media (min-width: 1512px) {
  .featured-slider.featured-slider--text-left .container {
    padding-right: 40px;
    margin-right: auto;
  }
}
@media (max-width: 1080px) {
  .featured-slider.featured-slider--text-left .container {
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .featured-slider.featured-slider--text-left .container {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
  }
}
@media (max-width: 1080px) {
  .featured-slider.featured-slider--text-left .featured-slider__slider {
    margin-right: 0;
    margin-left: 0;
  }
}
.featured-slider.featured-slider--text-left .featured-slider__subtitle {
  margin: 0;
  margin-right: auto;
}
@media (min-width: 1512px) {
  .featured-slider.featured-slider--text-left .featured-slider__subtitle {
    margin: 0;
    margin-right: auto !important;
  }
}
@media (max-width: 1080px) {
  .featured-slider.featured-slider--text-left .featured-slider__nav {
    left: 60px;
  }
}
@media (max-width: 767px) {
  .featured-slider.featured-slider--text-left .featured-slider__nav {
    left: 0;
  }
}
.featured-slider.featured-slider--text-right .featured-slider__header {
  max-width: 1286px;
  width: 100%;
  text-align: right;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  margin-right: -80px;
}
@media (max-width: 1080px) {
  .featured-slider.featured-slider--text-right .featured-slider__header {
    max-width: 100%;
    padding: 0;
    margin-right: 0;
    margin: 0;
  }
}
@media (min-width: 1512px) {
  .featured-slider.featured-slider--text-right .featured-slider__header {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    margin-right: 0;
  }
}
.featured-slider.featured-slider--text-right .container-featured {
  max-width: 1286px;
  width: 100%;
  padding-left: 0;
  padding-right: 40px;
  margin: 0 auto;
  margin-left: auto;
}
@media (max-width: 1080px) {
  .featured-slider.featured-slider--text-right .container-featured {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .featured-slider.featured-slider--text-right .container-featured {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.featured-slider.featured-slider--text-right .container {
  max-width: 1286px;
  width: 100%;
  padding-left: 0;
  padding-right: 40px;
  margin: 0 auto;
  margin-left: 0;
}
@media (min-width: 1512px) {
  .featured-slider.featured-slider--text-right .container {
    padding-left: 40px;
    margin-left: auto;
  }
}
@media (max-width: 1080px) {
  .featured-slider.featured-slider--text-right .container {
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .featured-slider.featured-slider--text-right .container {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
  }
}
@media (min-width: 1512px) {
  .featured-slider.featured-slider--text-right .container {
    padding-left: 40px;
    margin-left: auto;
  }
}
.featured-slider.featured-slider--text-right .featured-slider__slider::before {
  content: "";
  display: block;
  background-color: #ffffff;
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 100%;
  z-index: 4;
}
@media (max-width: 1080px) {
  .featured-slider.featured-slider--text-right .featured-slider__slider {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .featured-slider.featured-slider--text-right .featured-slider__slider::before {
    display: none;
  }
}
.featured-slider.featured-slider--text-right .featured-slider__slider .slick-track {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 1080px) {
  .featured-slider.featured-slider--text-right .featured-slider__slider .slick-track {
    flex-direction: row;
  }
}
.featured-slider.featured-slider--text-right .featured-slider__slider .slick-list {
  margin-right: -80px;
  padding-right: 80px;
}
@media (max-width: 1080px) {
  .featured-slider.featured-slider--text-right .featured-slider__slider .slick-list {
    margin: 0 !important;
    padding: 0 !important;
  }
}
.featured-slider.featured-slider--text-right .featured-slider__nav {
  flex-direction: column-reverse;
}
.featured-slider.featured-slider--text-right .featured-slider__subtitle {
  margin-left: auto;
  margin-right: 0;
}
@media (min-width: 1512px) {
  .featured-slider.featured-slider--text-right .featured-slider__subtitle {
    margin-right: 0;
  }
}
.featured-slider.featured-slider--text-right .featured-slider__nav {
  right: -30px;
  left: auto;
}
@media (max-width: 1080px) {
  .featured-slider.featured-slider--text-right .featured-slider__nav {
    right: 20px;
    left: auto;
  }
}
@media (max-width: 767px) {
  .featured-slider.featured-slider--text-right .featured-slider__nav {
    right: 20px;
  }
}
.featured-slider.featured-slider--text-right .featured-slider__slider {
  margin-left: 0;
  margin-right: 70px;
}
.featured-slider {
  /* OSNOVNI SLIDER
  --------------------------------------------- */
}
.featured-slider__wrap {
  position: relative;
}
.featured-slider__slider {
  position: relative;
  margin-left: 70px;
}
.featured-slider__slider::before {
  content: "";
  display: block;
  background-color: #ffffff;
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 100%;
  z-index: 4;
}
@media (max-width: 1080px) {
  .featured-slider__slider {
    margin-left: 60px;
  }
  .featured-slider__slider::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .featured-slider__slider {
    margin-left: 0;
  }
}
.featured-slider__slider .slick-track {
  display: flex;
}
.featured-slider {
  /* strelice levo jedna ispod druge */
}
.featured-slider__nav {
  position: absolute;
  left: 30px;
  bottom: 0;
  transform: translate(-30px, 0);
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  z-index: 5;
}
@media (max-width: 1080px) {
  .featured-slider__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    top: auto !important;
    left: 20px;
    bottom: -70px !important;
    transform: translate(0, 0);
  }
}
@media (max-width: 767px) {
  .featured-slider__nav {
    left: 20px;
  }
}
.featured-slider__arrow {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.featured-slider__arrow::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../icons/arrow.png");
}
.featured-slider__arrow--next::before {
  transform: rotate(180deg);
}
.featured-slider__arrow--prev::before {
  transform: rotate(0deg);
}
.featured-slider__arrow:hover {
  transform: translateY(0);
}
.featured-slider__arrow:hover::before {
  background-image: url("../icons/arrow-orange.png");
}
.featured-slider__arrow.is-disabled, .featured-slider__arrow:disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}
.featured-slider__arrow.is-disabled::before, .featured-slider__arrow:disabled::before {
  background-image: url("../icons/arrow.png");
}
.featured-slider .container-featured {
  max-width: 1286px;
  width: 100%;
  padding-left: 40px;
  padding-right: 0;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .featured-slider .container-featured {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .featured-slider .container-featured {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.featured-slider__slide {
  width: 376px;
  height: 496px;
  position: relative;
  overflow: hidden;
  flex: 0 0 376px;
}
@media (max-width: 1024px) {
  .featured-slider__slide {
    width: 320px;
    flex: 0 0 320px;
  }
}
@media (max-width: 768px) {
  .featured-slider__slide {
    width: auto;
    flex: none;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .featured-slider .slick-list {
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
  .featured-slider .slick-track {
    display: flex;
    margin: 0;
  }
  .featured-slider .slick-slide {
    margin: 0;
    padding: 0;
  }
}
.featured-slider__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  outline: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.featured-slider__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-slider {
  /* Naslov – uvek vidljiv, samo klikabilan */
}
.featured-slider__slide-title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 20px;
  cursor: pointer;
}
.featured-slider {
  /* Tekst (accordion content) */
}
.featured-slider__slide-text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.featured-slider {
  /* Otvoren accordion */
}
.featured-slider__slide--open .featured-slider__slide-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  max-height: 600px;
}
.featured-slider {
  /* ======================
     VARIJANTA: STRIP CARDS
     ====================== */
}
.featured-slider--variant-strip-cards .featured-slider__slide {
  height: 496px;
  overflow: hidden;
}
.featured-slider--variant-strip-cards .featured-slider__slide:hover .featured-slider__image {
  transform: scale(1.03);
}
.featured-slider--variant-strip-cards .featured-slider__slide:hover::before {
  opacity: 0.4;
  transform: scale(1);
}
.featured-slider--variant-strip-cards .featured-slider__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 32px 28px;
  z-index: 2;
}
.featured-slider--variant-strip-cards.featured-slider--theme-light .featured-slider__content {
  background: rgba(255, 255, 255, 0.85);
  color: #18252c;
}
.featured-slider--variant-strip-cards.featured-slider--theme-dark .featured-slider__content {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.7) 100%);
  color: #ffffff;
}
@media (max-width: 1024px) {
  .featured-slider--variant-strip-cards .featured-slider__slide {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .featured-slider--variant-strip-cards .featured-slider__slide {
    height: 380px;
  }
}
.featured-slider {
  /* ======================
     VARIJANTA: LARGE CARD
     ====================== */
}
.featured-slider--variant-large-card {
  /* sam slide je jedna velika kartica */
}
.featured-slider--variant-large-card .featured-slider__slide {
  height: 496px;
  overflow: hidden;
  position: relative;
}
.featured-slider--variant-large-card .featured-slider__slide:hover .featured-slider__image {
  transform: scale(1.03);
}
.featured-slider--variant-large-card .featured-slider__slide:hover::before {
  opacity: 0.45;
}
.featured-slider--variant-large-card {
  /* slika je podloga, content je overlay na dnu */
}
.featured-slider--variant-large-card .featured-slider__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.featured-slider--variant-large-card .featured-slider__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-slider--variant-large-card .featured-slider__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}
.featured-slider--variant-large-card {
  /* ------------------------------
     LIGHT THEME (oba – left/right)
     ------------------------------ */
}
.featured-slider--variant-large-card.featured-slider--theme-light .featured-slider__content {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.6) 100%);
  color: #fefefe;
}
.featured-slider--variant-large-card.featured-slider--theme-light .featured-slider__arrow {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.featured-slider--variant-large-card.featured-slider--theme-light .featured-slider__arrow::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-image: url("../icons/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.featured-slider--variant-large-card.featured-slider--theme-light .featured-slider__arrow--next::before {
  transform: rotate(180deg);
}
.featured-slider--variant-large-card.featured-slider--theme-light .featured-slider__arrow--prev::before {
  transform: rotate(0deg);
}
.featured-slider--variant-large-card.featured-slider--theme-light .featured-slider__arrow:hover::before {
  background-image: url("../icons/arrow-orange.png");
}
.featured-slider--variant-large-card.featured-slider--theme-light .featured-slider__nav {
  flex-direction: column-reverse;
  bottom: auto;
  top: 0;
}
.featured-slider--variant-large-card.featured-slider--theme-light .featured-slider__header {
  max-width: 1286px;
  width: 100%;
  text-align: left;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  margin-left: 0;
}
.featured-slider--variant-large-card.featured-slider--theme-light .featured-slider__subtitle {
  margin-left: 0 !important;
}
.featured-slider--variant-large-card.featured-slider--theme-light .featured-slider__slide--open .featured-slider__content {
  background-color: #ecddc0;
  color: #232222;
}
.featured-slider--variant-large-card.featured-slider--theme-light {
  /* LIGHT + LEFT */
}
.featured-slider--variant-large-card.featured-slider--theme-light.featured-slider--text-left .featured-slider__content {
  align-items: flex-start;
  text-align: left;
}
.featured-slider--variant-large-card.featured-slider--theme-light {
  /* LIGHT + RIGHT */
}
.featured-slider--variant-large-card {
  /* ------------------------------
     DARK THEME (oba – left/right)
     ------------------------------ */
}
.featured-slider--variant-large-card.featured-slider--theme-dark .featured-slider__content {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.75) 100%);
  color: #ffffff;
}
.featured-slider--variant-large-card.featured-slider--theme-dark .featured-slider__slide--open .featured-slider__content {
  background-color: rgba(24, 49, 56, 0.96);
  color: #ffffff;
}
.featured-slider--variant-large-card.featured-slider--theme-dark {
  /* u dark varijanti strelice idu gore levo, kao na dizajnu */
}
.featured-slider--variant-large-card.featured-slider--theme-dark .featured-slider__nav {
  top: 0;
  bottom: auto;
  transform: translate(-30px, 0);
}
@media (max-width: 767px) {
  .featured-slider--variant-large-card.featured-slider--theme-dark .featured-slider__nav {
    transform: translate(0, 0);
  }
}
.featured-slider--variant-large-card.featured-slider--theme-dark {
  /* DARK + LEFT */
}
.featured-slider--variant-large-card.featured-slider--theme-dark.featured-slider--text-left .featured-slider__content {
  align-items: flex-start;
  text-align: left;
}
.featured-slider--variant-large-card.featured-slider--theme-dark {
  /* DARK + RIGHT */
}
@media (max-width: 900px) {
  .featured-slider--variant-large-card .featured-slider__slide {
    height: 420px;
  }
  .featured-slider--variant-large-card .featured-slider__content {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .featured-slider--variant-large-card .featured-slider__slide {
    height: 380px;
  }
}
@media (max-width: 768px) {
  .featured-slider {
    padding: 80px 0;
  }
  .featured-slider__content {
    padding: 28px 20px 24px;
  }
  .featured-slider__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.featured-grid .container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.featured-grid__header {
  text-align: center;
  margin-bottom: 40px;
}
.featured-grid__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  color: #18282b;
  margin: 0 0 40px;
}
@media (max-width: 1080px) {
  .featured-grid__title {
    font-size: 32px;
  }
}
.featured-grid__subtitle {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #231f20;
  margin: 0;
  max-width: 964px;
  margin-left: auto;
  margin-right: auto;
}
.featured-grid__layout {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 1080px) {
  .featured-grid__layout {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .featured-grid__layout {
    grid-template-columns: 1fr;
  }
}
.featured-grid {
  /* leve 2 kolone – lista kartica */
}
.featured-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 24px;
}
@media (max-width: 1080px) {
  .featured-grid__list {
    grid-column: 1/-1;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .featured-grid__list {
    grid-template-columns: 1fr;
  }
}
.featured-grid__item {
  background-color: #FFF7E6;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.featured-grid__image {
  width: 100%;
  height: 0;
  padding-top: 66.666%;
  position: relative;
  overflow: hidden;
}
.featured-grid__image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  transition: transform 0.5s ease;
  z-index: 1;
}
.featured-grid__image:hover img {
  transform: scale(1.03);
}
.featured-grid__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  outline: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.featured-grid__content {
  padding: 20px 24px 24px;
}
.featured-grid__item-title {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin: 0 0 8px;
  color: #232222;
}
.featured-grid__item-text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #232222;
  margin: 0;
}
.featured-grid {
  /* desni donji blok – CTA */
}
.featured-grid__cta {
  background-color: #988C7D;
  border-radius: 4px 4px 0 80px;
  padding: 40px 36px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff7eb;
}
@media (max-width: 1080px) {
  .featured-grid__cta {
    grid-column: auto;
    border-radius: 4px;
  }
}
@media (max-width: 767px) {
  .featured-grid__cta {
    padding: 32px 24px;
  }
}
.featured-grid__cta-title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 14px;
}
.featured-grid__cta-text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  margin: 0 0 16px;
}
.featured-grid__cta-link {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  text-decoration: underline;
  color: #FEFEFE;
  font-style: italic;
}
.featured-grid__cta-link:hover {
  text-decoration: underline;
}

.cta-form-block {
  text-align: center;
}
.cta-form-block__header {
  margin-bottom: 32px;
}
.cta-form-block__title {
  margin: 0 0 40px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 56px;
  line-height: 77px;
  color: #183138;
}
@media (max-width: 1080px) {
  .cta-form-block__title {
    margin: 0;
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 20px;
  }
}
.cta-form-block__title-main {
  display: inline;
}
.cta-form-block__title-highlight {
  display: inline;
  color: #c99371;
}
.cta-form-block__subtitle {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #231f20;
  max-width: 800px;
  margin: 0 auto;
}
.cta-form-block__subtitle--top {
  font-style: italic;
  margin-bottom: 24px;
}
.cta-form-block__subtitle--bottom {
  font-size: 20px;
  line-height: 32px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-style: italic;
  display: contents;
}
@media (max-width: 767px) {
  .cta-form-block__subtitle--bottom {
    font-size: 16px;
    line-height: 28px;
  }
}
.cta-form-block__actions {
  margin-top: 24px;
  display: block;
}
.cta-form-block__btn {
  max-width: 185px;
  display: block;
  padding: 16px 20px;
  border-radius: 4px;
  background-color: #E5603B;
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  transition: background-color 0.2s ease;
  margin: 0 auto;
  margin-bottom: 40px;
}
.cta-form-block__btn:hover {
  background-color: #f96b43;
}
.cta-form-block__link {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #E5603B;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 20px;
}
.cta-form-block__link:hover {
  color: rgb(189.7591836735, 124.5183673469, 83.4408163265);
}
.cta-form-block__form {
  max-width: 760px;
  margin: 0 auto 24px;
}
.cta-form-block__form form {
  text-align: left;
}
.cta-form-block--has-form .cta-form-block__header {
  margin-bottom: 20px;
}
.cta-form-block--has-form .cta-form-block__actions {
  margin-top: 32px;
}
.cta-form-block {
  /* FORM STYLES */
}
.cta-form-block__form {
  margin-top: 40px;
  text-align: left;
}
.cta-form-block .trip-inquiry {
  margin-top: 0;
}
.cta-form-block .trip-inquiry__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 16px;
}
.cta-form-block .trip-inquiry__fields .wpcf7-select {
  display: none;
}
.cta-form-block .trip-inquiry__field--full {
  grid-column: 1/-1;
}
.cta-form-block .trip-inquiry__field--consent {
  grid-column: 1/-1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  color: #232222;
  margin-top: 8px;
}
.cta-form-block .trip-inquiry__field--submit {
  grid-column: 1/-1;
  text-align: center;
  margin-top: 24px;
}
.cta-form-block .trip-inquiry input[type=text],
.cta-form-block .trip-inquiry input[type=email],
.cta-form-block .trip-inquiry input[type=tel],
.cta-form-block .trip-inquiry input[type=date],
.cta-form-block .trip-inquiry select,
.cta-form-block .trip-inquiry textarea,
.cta-form-block .trip-inquiry .t-input,
.cta-form-block .trip-inquiry .t-select,
.cta-form-block .trip-inquiry .t-textarea {
  width: 100%;
  height: 33px;
  border-radius: 4px;
  border: 1px solid #232222;
  padding: 0 10px;
  font-size: 14px;
  line-height: 32px;
  color: #232222;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.cta-form-block .trip-inquiry textarea,
.cta-form-block .trip-inquiry .t-textarea {
  min-height: 200px;
  resize: vertical;
}
.cta-form-block .trip-inquiry input::-moz-placeholder, .cta-form-block .trip-inquiry textarea::-moz-placeholder {
  font-size: 14px;
  line-height: 32px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #232222;
}
.cta-form-block .trip-inquiry input::placeholder,
.cta-form-block .trip-inquiry textarea::placeholder {
  font-size: 14px;
  line-height: 32px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #232222;
}
.cta-form-block .trip-inquiry__field--consent input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0 8px 0 0;
  border-radius: 2px;
  border: 1px solid rgba(35, 34, 34, 0.9019607843);
  position: static !important;
  opacity: 1 !important;
  -webkit-appearance: auto !important;
     -moz-appearance: auto !important;
          appearance: auto !important;
  pointer-events: auto !important;
  cursor: pointer;
}
.cta-form-block .trip-inquiry__field--consent.inner-form p,
.cta-form-block .trip-inquiry__field--consent.inner-form label,
.cta-form-block .trip-inquiry__field--consent.inner-form .wpcf7-list-item,
.cta-form-block .trip-inquiry__field--consent.inner-form .wpcf7-list-item-label {
  pointer-events: auto !important;
  cursor: pointer;
}
.cta-form-block .trip-inquiry .t-button,
.cta-form-block .trip-inquiry input[type=submit] {
  display: inline-block;
  padding: 12px 47px;
  border-radius: 4px;
  border: none;
  background-color: #E5603B;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s;
}
.cta-form-block .trip-inquiry .t-button:hover,
.cta-form-block .trip-inquiry input[type=submit]:hover {
  background-color: #F96B43;
}
@media (max-width: 1080px) {
  .cta-form-block .trip-inquiry__fields {
    grid-template-columns: 1fr;
  }
}
.cta-form-block .custom-combobox {
  color: #232222;
  border: 1px solid #232222;
  border-radius: 4px;
}
.cta-form-block .custom-combobox .cs-select .cs-selected {
  color: #232222 !important;
  font-size: 14px;
  line-height: 32px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.cta-form-block .custom-combobox .cs-select .cs-right {
  border-bottom: 1px solid #232222;
  border-right: 1px solid #232222;
}
.cta-form-block .custom-combobox .cs-dropdown {
  background: #ffffff;
  border: 1px solid #232222;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.cta-form-block .custom-combobox .cs-option {
  font-size: 14px;
  line-height: 32px;
  transition: all 0.5s;
  padding: 0 10px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.cta-form-block .custom-combobox .cs-option:hover {
  background: #ffffff;
  color: rgba(35, 34, 34, 0.9019607843);
}
.cta-form-block .cta-form-block .custom-combobox .cs-option:hover {
  background: #ffffff;
  color: rgba(35, 34, 34, 0.9019607843);
}
.cta-form-block .custom-combobox .cs-hilighted {
  background: #ffffff;
  color: rgba(35, 34, 34, 0.9019607843);
}
.cta-form-block .inner-form p {
  display: flex;
  gap: 5px;
  align-items: center;
}
.cta-form-block .inner-form label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.cta-form-block .inner-form input[type=checkbox] {
  cursor: pointer;
  pointer-events: auto;
  flex-shrink: 0;
}
.cta-form-block .wpcf7-list-item {
  margin: 0;
}

.concierge-levels__header {
  text-align: left;
  margin-bottom: 40px;
}
.concierge-levels__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1.3;
  color: #183138;
  margin: 0 0 12px;
}
@media (max-width: 1080px) {
  .concierge-levels__title {
    font-size: 32px;
  }
}
.concierge-levels__subtitle {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  color: #231f20;
  margin: 0;
  max-width: 640px;
}
.concierge-levels__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .concierge-levels__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .concierge-levels__grid {
    grid-template-columns: 1fr;
  }
}
.concierge-levels__card {
  background-color: #F2F0E7;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  border: 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.concierge-levels__card:first-child {
  background-color: #fff;
  border: 1px solid #B59280;
}
.concierge-levels__card:last-child {
  background-color: #F6F0D3;
}
.concierge-levels__card--featured {
  border: 2px solid #2b5d9b;
  background-color: #f6f2e7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.concierge-levels__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.concierge-levels__card-inner {
  padding: 32px 32px 28px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.concierge-levels__card-title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 1.3;
  color: #231f20;
  margin: 0 0 20px;
}
.concierge-levels__card-tagline {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #232222;
  margin: 0 0 18px;
}
.concierge-levels__card-price {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  color: #232222;
  margin: 0 0 18px;
}
.concierge-levels__card-features {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #232222;
  margin-bottom: 30px;
}
.concierge-levels__card-features ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.concierge-levels__card-features ul li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 26px;
}
.concierge-levels__card-features ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 20px;
  color: #232222;
  transform: rotate(-14deg);
}
.concierge-levels__card-features p {
  margin: 0 0 8px;
}
.concierge-levels__card-button {
  margin-top: auto;
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  background-color: #e5603b;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease;
  text-align: center;
}
.concierge-levels__card-button:hover {
  background-color: #f96b43;
}

.cta-simple .container {
  text-align: center;
}
.cta-simple__inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta-simple__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1.3;
  color: #183138;
  margin: 0 0 20px;
}
@media (max-width: 1080px) {
  .cta-simple__title {
    font-size: 32px;
  }
}
.cta-simple__subtitle {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  color: #231f20;
  margin: 0 0 32px;
}
.cta-simple__subtitle p {
  margin: 0;
}
.cta-simple__button {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1px solid #e5603b;
  background-color: transparent;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #232222;
  cursor: pointer;
  transition: all, 0.5s;
}
.cta-simple__button:hover {
  color: #E5603B;
  border: 1px solid #E5603B;
}

.text-intro-panel {
  padding: 120px 0;
  background-color: #f2f0e7;
}
@media (max-width: 1080px) {
  .text-intro-panel {
    padding: 70px 0;
  }
}
.text-intro-panel .container {
  max-width: 1120px;
}
.text-intro-panel__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 44px;
  line-height: 1.3;
  color: #183138;
  margin: 0 0 32px;
}
@media (max-width: 767px) {
  .text-intro-panel__title {
    font-size: 32px;
  }
}
.text-intro-panel__subtitle {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 1.7;
  color: #231f20;
  font-style: italic;
  margin: 0 0 28px;
}
.text-intro-panel__subtitle p {
  margin: 0 0 6px;
}
.text-intro-panel__subtitle p:last-child {
  margin-bottom: 0;
}
.text-intro-panel__body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #231f20;
  max-width: 880px;
}
.text-intro-panel__body p {
  margin: 0 0 12px;
}
.text-intro-panel__body p:last-child {
  margin-bottom: 0;
}

.curated-grid .container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.curated-grid__header {
  text-align: center;
  margin-bottom: 40px;
}
.curated-grid__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  color: #18282b;
  margin: 0 0 40px;
  text-align: left;
}
@media (max-width: 1080px) {
  .curated-grid__title {
    font-size: 32px;
  }
}
.curated-grid__subtitle {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #232222;
  margin: 0;
  max-width: 964px;
  text-align: left;
}
.curated-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 24px;
}
@media (max-width: 1080px) {
  .curated-grid__list {
    grid-column: 1/-1;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .curated-grid__list {
    grid-template-columns: 1fr;
  }
}
.curated-grid__item {
  background-color: #FFF7E6;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.curated-grid__image {
  width: 100%;
  height: 0;
  padding-top: 66.666%;
  position: relative;
  overflow: hidden;
}
.curated-grid__image:hover img {
  transform: scale(1.03);
}
.curated-grid__image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  transition: transform 0.5s ease;
  z-index: 1;
}
.curated-grid__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
.curated-grid__content {
  padding: 20px 24px 24px;
}
.curated-grid__item-title {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin: 0 0 8px;
  color: #232222;
}
.curated-grid__item-text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #232222;
  margin: 0;
}

.services-highlights-icons__header {
  text-align: center;
  margin-bottom: 32px;
}
.services-highlights-icons__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 1.3;
  color: #183138;
  margin: 0 0 40px;
  text-align: center;
}
@media (max-width: 1080px) {
  .services-highlights-icons__title {
    font-size: 32px;
  }
}
.services-highlights-icons__intro {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #232222;
  margin: 0;
  max-width: 820px;
  margin: 0 auto;
}
.services-highlights-icons__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .services-highlights-icons__grid {
    grid-template-columns: 1fr;
  }
}
.services-highlights-icons__card {
  background-color: #f4f2ea;
  border-radius: 8px;
  padding: 24px 28px;
  display: block;
  align-items: flex-start;
  gap: 16px;
  min-height: 140px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.services-highlights-icons__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.services-highlights-icons__icon {
  flex: 0 0 40px;
  margin-bottom: 15px;
}
.services-highlights-icons__icon img {
  display: block;
  max-width: 40px;
  max-height: 40px;
}
.services-highlights-icons__card-body {
  flex: 1 1 auto;
}
.services-highlights-icons__card-title {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  color: #232F47;
  margin: 0 0 10px;
}
.services-highlights-icons__card-text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #232F47;
  margin: 0;
}
.services-highlights-icons__footer {
  margin-top: 40px;
  text-align: center;
}
.services-highlights-icons__btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  background-color: #e5603b;
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.services-highlights-icons__btn:hover {
  background-color: #f96b43;
}

.events-intro-split {
  /* HERO LAYOUT
  -------------------------------------- */
}
.events-intro-split__hero {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.events-intro-split__hero:hover img {
  transform: scale(1.03);
}
@media (max-width: 1080px) {
  .events-intro-split__hero {
    padding-top: 75%;
  }
}
.events-intro-split__hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  outline: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 1080px) {
  .events-intro-split__hero img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.events-intro-split {
  /* hero varijanta – naslov preko slike, BELI */
}
.events-intro-split__hero-title {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 52px;
  max-width: 900px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}
.events-intro-split {
  /* osnovni stil naslova, kada je prikazan unutar box-a (text layout) */
}
.events-intro-split__hero-title--inline {
  position: static;
  margin: 0 0 16px;
  max-width: 100%;
  text-shadow: none;
  color: #fefefe;
}
.events-intro-split__subtitle {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 30px;
  color: #fefefe;
  margin: 0 0 18px;
}
.events-intro-split__bottom {
  display: grid;
  grid-template-columns: 510px 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 900px) {
  .events-intro-split__bottom {
    grid-template-columns: 1fr;
  }
}
.events-intro-split__left {
  background: #77849b;
  padding: 40px;
  border-radius: 8px;
}
.events-intro-split__content {
  color: #fefefe;
  font-size: 20px;
  line-height: 32px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 20px;
}
.events-intro-split__content ul {
  padding-left: 30px;
}
.events-intro-split__content ul li {
  list-style-type: disc;
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.events-intro-split__list {
  margin: 0 0 24px;
  padding-left: 20px;
}
.events-intro-split__list li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 24px;
}
.events-intro-split__btn {
  display: inline-block;
  padding: 14px 28px;
  background: #e5603b;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}
.events-intro-split__btn:hover {
  background: #f46c48;
}
.events-intro-split__image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.events-intro-split__image:hover img {
  transform: scale(1.03);
}
@media (max-width: 1080px) {
  .events-intro-split__image {
    padding-top: 75%;
  }
}
.events-intro-split__image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 1080px) {
  .events-intro-split__image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.events-intro-split {
  /* TEXT-ONLY LAYOUT
  -------------------------------------- */
}
.events-intro-split__text-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.events-intro-split--layout-text {
  /* malo više razmaka kada nema hero slike */
  padding-top: 80px;
  padding-bottom: 80px;
}
.events-intro-split--layout-text .events-intro-split__bottom {
  margin-top: 0;
}
.events-intro-split--layout-text .events-intro-split__btn {
  margin-top: 24px;
}
.events-intro-split--layout-text {
  /* ovde PREBOJAVAMO boje za varijantu "naslov + tekst" */
}
.events-intro-split--layout-text .events-intro-split__hero-title--inline {
  color: #183138;
  margin-bottom: 40px;
}
.events-intro-split--layout-text .events-intro-split__subtitle {
  color: #232222;
  font-size: 16px;
  line-height: 28px;
  max-width: 900px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .events-intro-split {
    padding-bottom: 60px;
  }
  .events-intro-split__left {
    padding: 28px 20px;
  }
  .events-intro-split__hero-title, .events-intro-split__hero-title--inline {
    font-size: 32px;
    line-height: 1.2;
  }
}

.legal-text-block {
  background-color: #f5f5f5;
  overflow: auto;
}
.legal-text-block .container {
  max-width: 960px;
  margin: 0 auto;
}
.legal-text-block__title {
  font-size: 40px;
  line-height: 52px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #232222;
  margin-bottom: 8px;
}
.legal-text-block__date {
  font-size: 14px;
  line-height: 21px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #232222;
  margin-bottom: 32px;
}
.legal-text-block__subtitle {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 48px;
}
.legal-text-block__section {
  margin-bottom: 32px;
}
.legal-text-block__section-title {
  font-size: 20px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 30px;
}
.legal-text-block__section-content {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #232222;
}
.legal-text-block__section-content strong {
  font-weight: 600;
}
.legal-text-block__section-content p {
  margin-bottom: 10px;
  color: #232222;
}
.legal-text-block__section-content ul, .legal-text-block__section-content ol {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 16px;
  color: #232222;
}
.legal-text-block__section-content li {
  margin-bottom: 4px;
  color: #232222;
}

.spacing-block {
  width: 100%;
  height: var(--spacing-desktop);
  background-color: var(--spacing-bg, transparent);
  pointer-events: none;
}

@media (max-width: 1080px) {
  .spacing-block {
    height: var(--spacing-tablet, var(--spacing-desktop));
  }
}
@media (max-width: 767px) {
  .spacing-block {
    height: var(--spacing-mobile, var(--spacing-tablet, var(--spacing-desktop)));
  }
}
.custom-combobox {
  width: 100%;
  position: relative;
  background-color: transparent;
  color: white;
  font-size: 1em;
  line-height: 1em;
  display: inline-block;
  border: 1px solid white;
  text-align: left;
  border-radius: 4px;
}
.custom-combobox .cs-select {
  position: relative;
}
.custom-combobox .cs-search {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 32px);
  height: 100%;
  padding: 0 0.5em;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  display: none;
  outline: none;
}
.custom-combobox.custom-combobox--searchable .cs-select {
  cursor: text;
}
.custom-combobox.custom-combobox--searchable.is-searching .cs-selected {
  visibility: hidden;
}
.custom-combobox.custom-combobox--searchable.is-searching .cs-search {
  display: block;
}
.custom-combobox .cs-dropdown {
  background: inherit;
  position: absolute;
  width: calc(100% + 2px);
  z-index: 999;
  border: 1px solid white;
  left: -1px;
  border-radius: 4px;
}
.custom-combobox .cs-option, .custom-combobox .cs-selected {
  color: inherit;
  box-sizing: border-box;
  line-height: calc(3em - 1px);
  display: block;
  text-decoration: none;
  outline: none;
  padding: 0 0.5em;
}
.custom-combobox .cs-option {
  background: inherit;
  border-bottom: 1px solid white;
  transition: all 0.4s;
}
.custom-combobox .cs-option:last-child {
  border: none;
}
.custom-combobox .cs-option:hover {
  background-color: transparent;
  color: white;
}
.custom-combobox .cs-selected {
  background: inherit;
  border: none;
}
.custom-combobox .cs-selected[value=""] {
  color: rgba(255, 255, 255, 0.5);
}
.custom-combobox .cs-hilighted {
  background-color: transparent;
  color: white;
}
.custom-combobox .cs-right {
  position: absolute;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  width: 0.6em;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  right: 10px;
  transform: translateY(-70%) rotate(45deg);
  cursor: pointer;
}

.custom-combobox {
  font-size: 1em;
}

.services-trips {
  padding: 80px 0 120px;
}
.services-trips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.services-trips__title {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 24px;
}
.services-trips__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 800px;
}
.services-trips__select {
  min-width: 180px;
  padding: 8px 12px;
  color: #232222;
  border: 1px solid #232222;
  border-radius: 4px;
  font-size: 14px;
}
.services-trips__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 70px;
}
.services-trips__grid .trip-card {
  border-radius: 8px;
  overflow: hidden;
}
.services-trips__grid .trip-card__image-wrap {
  position: relative;
  display: block;
  height: 440px;
  overflow: hidden;
}
.services-trips__grid .trip-card__image-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  transition: transform 0.5s ease;
  z-index: 1;
}
.services-trips__grid .trip-card__image-wrap:hover img {
  transform: scale(1.03);
}
.services-trips__grid .trip-card__image-wrap img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  outline: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
.services-trips__grid .trip-card__image-wrap .trip-card__badge--promotion {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  background-color: #E5603B;
  padding: 5px 10px;
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 1;
}
.services-trips__grid .trip-card__image-wrap .trip-card__badge--favourite {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  background-color: #B59280;
  padding: 5px 10px;
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 1;
}
.services-trips__grid .trip-card__title {
  color: #fff;
  position: absolute;
  bottom: -30px;
  font-size: 32px;
  padding: 20px;
  z-index: 1;
}
.services-trips__grid .trip-card__line {
  margin-top: 10px;
}
.services-trips__grid .trip-card__line span {
  font-size: 16px;
  line-height: 21px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-style: italic;
}
.services-trips__grid .trip-card__line span strong {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.services-trips__grid .trip-card__price p {
  font-size: 16px;
  line-height: 21px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.services-trips__no-results {
  font-size: 16px;
}
@media (max-width: 1024px) {
  .services-trips__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .services-trips__grid {
    grid-template-columns: 1fr;
  }
  .services-trips__filters {
    flex-direction: column;
  }
  .services-trips__select {
    width: 100%;
  }
}

/* =========================================================
   SHARE BAR – SINGLE POST / TRIP
   ========================================================= */
.share-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 900;
}

/* kolona koja je poravnata na desnu ivicu */
.share-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.share-bar__list li + li {
  margin-top: 5px;
}

/* dugme – u početku kao kvadrat 56x56 */
.share-bar__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 56px;
  height: 56px;
  min-width: 56px;
  padding: 0 16px;
  border-radius: 4px;
  background-color: rgba(24, 49, 56, 0.8);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: width 0.25s ease, background-color 0.25s ease;
}

/* ikonica – UVEK prva, ne pomera se relativno na tekst */
.share-bar__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.share-bar__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

/* tekst: u startu “stisnut” pa se širi na hover */
.share-bar__label {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transform: translateX(8px);
  transition: opacity 0.25s ease, max-width 0.25s ease, transform 0.25s ease;
}

/* HOVER:
   - dugme se širi samo ulevo (jer je lista align-items:flex-end)
   - tekst se pojavi desno od ikonice */
.share-bar__btn:hover,
.share-bar__btn:focus {
  width: 220px;
}

.share-bar__btn:hover .share-bar__label,
.share-bar__btn:focus .share-bar__label {
  opacity: 1;
  max-width: 160px;
  transform: translateX(0);
}

/* iste boje za sve (menjaj po mreži ako želiš) */
.share-bar__btn--fb,
.share-bar__btn--x,
.share-bar__btn--in,
.share-bar__btn--mail,
.share-bar__btn--wa {
  background-color: rgba(24, 49, 56, 0.8);
}

/* sakrij na mobilu */
@media (max-width: 767px) {
  .share-bar {
    position: static;
    transform: none;
    margin: 20px 0;
  }
  .share-bar__list {
    flex-direction: row;
    justify-content: space-around;
  }
}
/* =========================================================
   SHARE YOUR JOURNEY – forma + galerija
   ========================================================= */
.ready-story-cta__form {
  max-width: 608px;
  margin: 0 auto;
  /* ---------- GRID I INPUTI ---------- */
}
.ready-story-cta__form .ready-story-cta__subtitle {
  font-size: 20px;
  line-height: 32px;
  text-align: left;
  margin: 0;
  margin-bottom: 20px;
}
.ready-story-cta__form .acf-form {
  max-width: 960px;
  margin: 0 auto;
}
.ready-story-cta__form .acf-fields > .acf-field {
  border-top-style: none;
  border-top-width: 0;
  padding: 0;
}
.ready-story-cta__form .acf-form .acf-fields.acf-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 16px;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_description],
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery],
.ready-story-cta__form .acf-form .acf-field[data-name=story_hero] {
  grid-column: 1/-1;
}
.ready-story-cta__form {
  /* hero polje krijemo – ne treba u formi */
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_hero] {
  display: none;
}
.ready-story-cta__form .acf-form .acf-label label {
  display: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.ready-story-cta__form .acf-form input[type=text],
.ready-story-cta__form .acf-form input[type=email],
.ready-story-cta__form .acf-form input[type=tel],
.ready-story-cta__form .acf-form input[type=date],
.ready-story-cta__form .acf-form textarea {
  width: 100%;
  border: 1px solid #232222;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  border-radius: 3px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.4;
  font-family: inherit;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ready-story-cta__form .acf-form textarea {
  min-height: 160px;
  resize: vertical;
}
.ready-story-cta__form .acf-form input:focus,
.ready-story-cta__form .acf-form textarea:focus {
  outline: 0;
  border-color: #232222;
  box-shadow: 0;
}
@media (max-width: 767px) {
  .ready-story-cta__form .acf-form .acf-fields.acf-form-fields {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.ready-story-cta__form {
  /* ---------- GALERIJA WRAP ---------- */
}
.ready-story-cta__form .acf-field .acf-label {
  display: none;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] {
  overflow: hidden;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-label label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery {
  border: 0;
  background-color: #fff;
}
.ready-story-cta__form {
  /* Glavni box za klik + overlay */
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-main {
  position: relative;
  min-height: 220px;
  padding: 40px 0;
  border: 1px dashed #c2c2c2;
}
.ready-story-cta__form {
  /* TOOLBAR = nevidljivo dugme preko celog boxa */
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-toolbar {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-top: 0;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-toolbar .acf-hl {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-toolbar .acf-hl > li {
  margin: 0;
  padding: 0;
}
.ready-story-cta__form {
  /* sakrij Bulk actions / sort / combobox */
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-toolbar .acf-fr,
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-toolbar .custom-combobox,
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-toolbar .acf-gallery-sort {
  display: none !important;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-toolbar .acf-gallery-add {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.ready-story-cta__form {
  /* side panel ne treba u frontendu */
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-side {
  display: none !important;
}
.ready-story-cta__form {
  /* ---------- NAŠ OVERLAY U DROPZONI ---------- */
}
.ready-story-cta__form .ts-gallery-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 16px;
  /* klik prolazi do ACF dugmeta ispod */
  pointer-events: none;
  z-index: 2;
}
.ready-story-cta__form .ts-gallery-overlay__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  /* ikonica kao background */
  background-image: url("../icons/document.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.ready-story-cta__form .ts-gallery-overlay__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.ready-story-cta__form .ts-gallery-overlay__browse {
  color: #d6713c;
}
.ready-story-cta__form .ts-gallery-overlay__desc {
  font-size: 13px;
  line-height: 1.5;
  color: #444;
  max-width: 460px;
}
.ready-story-cta__form {
  /* ---------- THUMBOVI DOLE ---------- */
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-attachments {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-attachments::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-attachments {
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  z-index: 3;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-attachment {
  position: relative;
  flex: 0 0 189px;
  height: 130px;
  background-color: #f2f2f2;
  border-radius: 2px;
  overflow: hidden;
}
.ready-story-cta__form {
  /* ---------- PLACEHOLDER KARTICE KADA NEMA SLIKA ---------- */
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .ts-gallery-placeholder {
  position: relative;
  flex: 0 0 189px;
  height: 140px;
  background-color: #f2f2f2;
  border-radius: 2px;
  overflow: hidden;
}
.ready-story-cta__form {
  /* zvezdica gore levo */
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .ts-gallery-placeholder::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 20px;
  height: 20px;
  background-image: url("../icons/stars.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.ready-story-cta__form {
  /* korpa dole desno */
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .ts-gallery-placeholder::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 18px;
  height: 18px;
  background-image: url("../icons/bin.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.6;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-attachment .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-attachment::before {
  content: "★";
  position: absolute;
  left: 10px;
  top: 8px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6196078431);
  z-index: 1;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-attachment.active::before {
  position: absolute;
  left: 10px;
  top: 8px;
  font-size: 20px;
  color: #B59280;
  z-index: 1;
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-attachment .acf-icon.-remove {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 18px;
  height: 18px;
  background-image: url("../icons/bin.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  color: transparent;
  text-shadow: none;
  border-radius: 0;
}
.ready-story-cta__form .acf-gallery {
  height: 430px !important;
}
.ready-story-cta__form .acf-gallery .acf-gallery-attachments {
  top: 210px !important;
  bottom: auto !important;
  z-index: 3 !important;
}
.ready-story-cta__form .acf-gallery .acf-gallery-attachments .actions {
  top: auto;
  bottom: 0;
  width: 15px;
  height: 15px;
  display: block;
}
.ready-story-cta__form .acf-gallery .acf-gallery-attachments .margin {
  border: 0;
  margin: 0;
}
.ready-story-cta__form .acf-gallery .acf-gallery-attachments .margin::before {
  padding-top: 69%;
}
.ready-story-cta__form .acf-gallery .acf-gallery-attachments .thumbnail {
  height: 135px;
  width: 189px;
  border: 0;
}
.ready-story-cta__form .acf-gallery .acf-input {
  height: 500px !important;
}
.ready-story-cta__form {
  /* Ako postoji bar jedan pravi attachment,
    sakrij sve placeholder kartice */
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-attachments:has(.acf-gallery-attachment) .ts-gallery-placeholder {
  display: none;
}
.ready-story-cta__form {
  /* BIN ikonica umesto X na attachmentima */
}
.ready-story-cta__form .acf-form .acf-field[data-name=story_gallery] .acf-gallery-attachment .acf-icon.acf-gallery-remove {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 15px;
  height: 15px;
  background-image: url("../icons/bin.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 0;
  padding: 0;
  background-color: transparent;
  /* sakrij X tekst */
  text-indent: -9999px;
  overflow: hidden;
  color: transparent;
  box-shadow: none;
}
.ready-story-cta__form .acf-true-false {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  align-items: center;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}
@media (max-width: 767px) {
  .ready-story-cta__form .acf-true-false {
    width: 100%;
  }
}
.ready-story-cta__form .acf-true-false [type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
  border: 1px solid #231F20;
  border-radius: 2px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}
.ready-story-cta__form .acf-true-false [type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(201, 109, 50, 0.25);
  border-color: #c96d32;
}
.ready-story-cta__form .acf-true-false [type=checkbox]:checked {
  background-color: #c96d32;
  border-color: #c96d32;
}
.ready-story-cta__form .acf-true-false [type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.ready-story-cta__form .acf-true-false label {
  cursor: pointer;
  line-height: 1.4;
}
.ready-story-cta__form {
  /* ---------- IKONICA KALENDARA ZA TRAVEL DATE ---------- */
}
.ready-story-cta__form .acf-form .acf-field[data-name=travel_date] .acf-date-picker.acf-input-wrap {
  position: relative;
}
.ready-story-cta__form .acf-form .acf-field[data-name=travel_date] .acf-date-picker.acf-input-wrap input {
  padding-right: 40px;
}
.ready-story-cta__form .acf-form .acf-field[data-name=travel_date] .acf-date-picker.acf-input-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("../icons/Calendar_Days.svg");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.ready-story-cta__form .acf-form .acf-field[data-name=travel_date] .acf-date-picker .acf-button {
  display: none;
}
.ready-story-cta__form .g-recaptcha {
  position: absolute !important;
  top: 44px !important;
}

.site-footer {
  padding: 72px 0 32px;
  background-color: #13282f;
  color: #f4f2ea;
  font-size: 14px;
  line-height: 1.6;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer a:hover {
  color: #ffffff;
}
.site-footer .container {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1080px) {
  .site-footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.site-footer .footer-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media (max-width: 1080px) {
  .site-footer .footer-header {
    display: block;
  }
}
.site-footer {
  /* ---------- gornji deo: 3 kolone (GRID) ---------- */
}
.site-footer__top {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr) 450px;
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 40px;
  margin-bottom: 40px;
  align-items: flex-start;
}
.site-footer {
  /* ---------- leva kolona: logo + tagline + opis ---------- */
}
.site-footer__col--brand {
  max-width: 400px;
}
.site-footer__logo {
  margin-bottom: 32px;
}
.site-footer__logo img {
  display: block;
  max-width: 220px;
  height: auto;
}
.site-footer__tagline {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 24px;
}
.site-footer__signature {
  margin-bottom: 24px;
}
.site-footer__signature img {
  display: block;
  max-width: 260px;
  height: auto;
}
.site-footer__description {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: #f4f2ea;
  opacity: 0.9;
}
.site-footer {
  /* ---------- sredina: meniji ---------- */
}
.site-footer__col--menus {
  display: flex;
  justify-content: center;
}
@media (max-width: 1080px) {
  .site-footer__col--menus {
    display: block;
  }
}
.site-footer__menu-group {
  display: flex;
  gap: 64px;
}
.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__menu li + li {
  margin-top: 6px;
}
.site-footer__menu a {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #f4f2ea;
  opacity: 0.9;
}
.site-footer__menu a:hover {
  opacity: 1;
}
.site-footer {
  /* ---------- desna kolona: kontakt + social ---------- */
}
.site-footer__col--contact {
  max-width: 450px;
}
.site-footer__contact-heading {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 16px;
}
.site-footer__contact-block {
  margin-bottom: 16px;
}
.site-footer__contact-block h4 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  color: #ffffff;
}
.site-footer__contact-block p {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #f4f2ea;
  opacity: 0.9;
  margin: 0 0 4px;
}
.site-footer__contact-links {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  margin-top: 8px;
  color: #f4f2ea;
}
.site-footer__contact-links a {
  color: inherit;
}
.site-footer__contact-links a:hover {
  color: #ffffff;
}
.site-footer__contact-links span {
  margin: 0 6px;
}
.site-footer {
  /* social ikone – stoje ispod email/website reda */
}
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1080px) {
  .site-footer__social {
    margin-bottom: 30px;
  }
}
.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-footer__social-link img,
.site-footer__social-link svg {
  display: block;
  width: 32px;
  height: 32px;
}
@media (max-width: 1080px) {
  .site-footer__social-link img,
  .site-footer__social-link svg {
    width: 22px;
    height: 22px;
  }
}
.site-footer {
  /* ---------- donja traka: copyright + “Designed by” ---------- */
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(244, 242, 234, 0.85);
}
.site-footer__copyright, .site-footer__designed {
  white-space: nowrap;
}
.site-footer__designed a {
  text-decoration: none;
}
.site-footer__designed a:hover {
  text-decoration: underline;
}
.site-footer {
  /* ---------- responsive ---------- */
}
@media (max-width: 1200px) {
  .site-footer__top {
    -moz-column-gap: 40px;
         column-gap: 40px;
    grid-template-columns: 320px minmax(0, 1fr) 380px;
  }
}
@media (max-width: 992px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }
  .site-footer__menu-group {
    justify-content: flex-start;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 56px 0 24px;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .site-footer__social {
    margin-top: 8px;
  }
}

.fadein-wrap {
  position: relative;
  top: 50px;
  opacity: 0;
  transition: all, 1.5s;
}
.fadein-wrap.in-view {
  top: 0;
  opacity: 1;
}

.wrap-content {
  max-width: 1240px;
  width: 95%;
  margin: 0 auto;
}

.button {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  background-color: #E5603B;
  font-size: 14px;
  padding: 0.9em 1.7em;
  line-height: 1.5em;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  transition: all, 0.5s;
  text-transform: uppercase;
}
.button:hover, .button:active {
  background-color: #F96B43;
}

.transparent-button {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  border: 1px solid #E5603B;
  font-size: 14px;
  padding: 0.9em 1.7em;
  line-height: 1.5em;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  color: #231F20;
  cursor: pointer;
  transition: all, 0.5s;
  text-transform: uppercase;
}
.transparent-button:hover {
  color: #E5603B;
}
.transparent-button:active {
  color: #FEFEFE;
  background-color: #E5603B;
}

.header {
  min-height: 88px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding-top: 10px;
  padding-bottom: 0;
  background-color: transparent;
  transition: background-color 0.3s ease, padding-top 0.3s ease;
}
.header .nav-wrap {
  display: flex;
  align-items: center;
}
.header .nav-wrap .logo-wrap {
  flex: 1;
}
.header .nav-wrap .logo-wrap .logo {
  display: inline-block;
  transform-origin: left center;
  transition: transform 0.3s ease;
  position: relative;
}
.header .nav-wrap .menu-wrap {
  flex: 2;
}
.header .nav-wrap .menu-wrap ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}
.header .nav-wrap .menu-wrap ul li {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: white;
  text-transform: uppercase;
  display: inline-block;
}
.header .nav-wrap .menu-wrap ul li a {
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: inherit;
}
.header .nav-wrap .menu-wrap ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.4s;
  margin-top: 5px;
}
.header .nav-wrap .menu-wrap ul li {
  /* hover linija */
}
.header .nav-wrap .menu-wrap ul li a:hover::after {
  transform: scaleX(1);
}
.header .nav-wrap .menu-wrap ul li {
  /* ACTIVE – indikator na kojoj si stranici
     WordPress dodaje klase na <li> */
}
.header .nav-wrap .menu-wrap ul li.current-menu-item > a::after, .header .nav-wrap .menu-wrap ul li.current_page_item > a::after, .header .nav-wrap .menu-wrap ul li.current-menu-ancestor > a::after {
  transform: scaleX(1);
}
.header .nav-wrap .menu-wrap ul .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 15px;
  position: absolute;
  list-style: none;
  margin: 0;
  margin-left: -20px;
}
.header .nav-wrap .menu-wrap ul .sub-menu li a {
  display: inline-block;
}
.header .nav-wrap .custom-combobox {
  width: 93px;
  align-self: flex-start;
  font-size: 14px;
}
.header .container {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1440px) {
  .header .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header {
  /* LOGO */
}
.header .logo__img {
  display: block;
  width: 120px;
  height: 91px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .header .logo__img {
    height: 60px;
  }
}
.header .logo__img--light,
.header .logo__img--dark {
  opacity: 0;
}

/* =========================================================
   LIGHT SKIN
   ========================================================= */
.header--light .logo__img--light {
  width: 120px;
  max-height: 91px;
  opacity: 1;
}
.header--light .logo__img--dark {
  opacity: 0;
  position: absolute;
  top: 0;
}

/* =========================================================
   DARK SKIN
   ========================================================= */
.header--dark {
  background-color: rgba(254, 254, 254, 0.8);
}
.header--dark .logo__img--light {
  opacity: 0;
  display: none;
}
.header--dark .sub-menu {
  background-color: rgba(254, 254, 254, 0.8);
  padding: 20px;
}
.header--dark .logo__img--dark {
  opacity: 1;
}
.header--dark .nav-wrap .menu-wrap ul li {
  color: #183138;
}
.header--dark .nav-wrap .menu-wrap ul li a::after {
  background: #183138;
}
.header--dark .menu-wrap ul li,
.header--dark .menu-wrap ul li a {
  color: #183138;
}
.header--dark .menu-wrap ul li a::after {
  background: #183138;
}
.header--dark .language-wrap .custom-combobox {
  color: #183138;
  border: 1px solid #183138;
}
.header--dark .language-wrap .custom-combobox .cs-right {
  border-bottom: 1px solid #183138;
  border-right: 1px solid #183138;
}
.header--dark .language-wrap .custom-combobox .cs-dropdown {
  border: 1px solid #183138;
}
.header--dark .language-wrap .custom-combobox .cs-option:hover {
  color: #183138;
}
.header--dark .language-wrap .custom-combobox .cs-hilighted {
  color: inherit;
}

/* =========================================================
   STICKY (.header--sticky dodaje JS)
   ========================================================= */
.header.header--sticky {
  padding-top: 10px;
  background-color: #FEFEFE;
}
.header.header--sticky .sub-menu {
  padding: 20px;
  background-color: #fff;
}
.header.header--sticky .cs-option {
  background-color: #fff;
}
.header.header--sticky .logo__img {
  width: 88px;
  height: 67px;
}
@media (max-width: 767px) {
  .header.header--sticky .logo__img {
    height: 60px;
  }
}
.header.header--sticky .logo__img--light {
  opacity: 0;
}
.header.header--sticky .logo__img--dark {
  opacity: 1;
}
.header.header--sticky .menu-wrap ul li,
.header.header--sticky .menu-wrap ul li a {
  color: #183138;
}
.header.header--sticky .menu-wrap ul li a::after {
  background: #183138;
}
.header.header--sticky .language-wrap .custom-combobox {
  color: #183138;
  border: 1px solid #183138;
}
.header.header--sticky .language-wrap .custom-combobox .cs-right {
  border-bottom: 1px solid #183138;
  border-right: 1px solid #183138;
}
.header.header--sticky .language-wrap .custom-combobox .cs-dropdown {
  border: 1px solid #183138;
}
.header.header--sticky .language-wrap .custom-combobox .cs-option:hover {
  color: #183138;
}
.header.header--sticky .language-wrap .custom-combobox .cs-hilighted {
  color: inherit;
}

/* =================================================================
   MOBILE HEADER + MOBILE MENU (odvojeno od desktopa)
   ================================================================= */
/* burger je skriven na desktopu */
.header__burger {
  display: none;
  position: relative;
  width: 28px;
  height: 22px;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}
.header__burger .header__burger-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #183138;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}
.header__burger .header__burger-line:nth-child(1) {
  top: 0;
}
.header__burger .header__burger-line:nth-child(2) {
  top: 10px;
}
.header__burger .header__burger-line:nth-child(3) {
  bottom: 0;
}

/* osnovni stil za mobile overlay meni */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 96px 24px 40px;
}

.mobile-menu__inner {
  width: 100%;
  max-width: 420px;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__list > li {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 18px;
  text-transform: none;
}
.mobile-menu__list > li a {
  text-decoration: none;
  color: #183138;
}
.mobile-menu__list .sub-menu {
  margin-top: 8px;
  margin-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu__list .sub-menu li {
  font-size: 16px;
}
.mobile-menu__list .sub-menu li a {
  color: #183138;
}

/* kad je otvoren meni – JS dodaje .mobile-menu--open */
.mobile-menu--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* animacija burgera u X – JS dodaje .header__burger--open */
.header__burger--open .header__burger-line:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.header__burger--open .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger--open .header__burger-line:nth-child(3) {
  bottom: auto;
  top: 10px;
  transform: rotate(-45deg);
}

.mobile-menu .mobile-menu__list .sub-menu {
  display: flex !important;
  flex-direction: column;
}

/* blokiraj skrol kad je meni otvoren */
body.mobile-menu-open {
  overflow: hidden;
}

/* BREAKPOINT: sve mobile stvari ovde */
@media (max-width: 1024px) {
  /* na mobu header je uvek na beloj pozadini i koristi dark logo */
  .header {
    background-color: #FEFEFE;
  }
  .header .nav-wrap {
    gap: 16px;
  }
  .header .menu-wrap {
    display: none;
  }
  .header .language-wrap {
    margin-left: auto;
  }
  .header .logo__img {
    width: 88px;
  }
  .header .language-wrap .custom-combobox {
    color: #183138;
    border: 1px solid #183138;
    height: 33px;
    width: 70px;
  }
  .header .language-wrap .custom-combobox .cs-right {
    border-bottom: 1px solid #183138;
    border-right: 1px solid #183138;
  }
  .header .language-wrap .custom-combobox .cs-dropdown {
    border: 1px solid #183138;
  }
  .header .language-wrap .custom-combobox .cs-selected {
    font-size: 12px;
    line-height: 32px;
  }
  .header .language-wrap .custom-combobox .cs-option:hover {
    color: #183138;
  }
  .header .language-wrap .custom-combobox .cs-hilighted {
    color: inherit;
  }
  /* na mobu uvek koristimo tamni logo */
  .header--light .logo__img--light,
  .header--dark .logo__img--light {
    opacity: 0;
  }
  .header--light .logo__img--dark,
  .header--dark .logo__img--dark {
    opacity: 1;
  }
  /* burger se prikazuje na mobilu */
  .header__burger {
    display: block;
  }
  /* sticky na mobu – ništa specijalno, samo neka ostane isto */
  .header.header--sticky {
    background-color: #FEFEFE;
  }
}
.ts-landing {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.ts-landing::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  transition: transform 0.5s ease;
  z-index: 1;
}
.ts-landing__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .ts-landing__top {
    grid-template-columns: 1fr;
  }
}
.ts-landing__logo {
  width: 98px;
}
.ts-landing__label {
  font-size: 24px;
  line-height: 32px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.ts-landing__bg {
  position: absolute;
  inset: 0;
  background-image: url("/path/do/slike.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.ts-landing__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 8% 7%;
  z-index: 2;
}
.ts-landing__box {
  max-width: 615px;
  width: 100%;
  background: #0f2730;
  color: #fff;
  padding: 24px;
}
.ts-landing__buttons {
  display: grid;
  grid-template-columns: 180px 180px;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .ts-landing__buttons {
    grid-template-columns: 1fr;
  }
}
.ts-landing__buttons a {
  font-size: 14px;
}
.ts-landing .ts-btn {
  width: 180px;
  height: 45px;
  border: 1px solid #F2F0E7;
  color: #F2F0E7;
  display: block;
  text-align: center;
  padding: 8px 0;
  transition: all, 0.5s;
}
.ts-landing .ts-btn:hover {
  border-color: #F96B43;
  color: #F96B43;
}
@media (max-width: 767px) {
  .ts-landing .ts-btn {
    margin: 0 auto;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  display: flex;
  height: 100vh;
  transition: all 0.3s;
  transition-delay: 1000s;
}
@media (max-width: 1080px) {
  .hero-section {
    padding-top: 90px;
    background-attachment: scroll;
    height: 100dvh;
    align-items: flex-end;
  }
}
.hero-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  transition: transform 0.5s ease;
  z-index: 0;
}

.hero-section__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  margin: auto;
  bottom: 0;
}
@media (max-width: 1080px) {
  .hero-section__overlay {
    position: static;
    margin: 0;
  }
}

.hero-section__content {
  max-width: 750px;
  width: 60%;
  position: absolute;
  bottom: 90px;
  opacity: 1;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  will-change: transform, opacity;
}
@media (max-width: 1080px) {
  .hero-section__content {
    width: 100%;
    position: static;
    transform: none;
    padding: 30px 0;
  }
}
.hero-section__content h1,
.hero-section__content h2,
.hero-section__content p {
  color: #FEFEFE;
}
.hero-section__content h1 {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .hero-section__content h1 {
    font-size: 28px;
  }
}
.hero-section__content h3 {
  font-style: italic;
  color: #fff;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 0;
  line-height: 1em;
}
@media (max-width: 1080px) {
  .hero-section__content h3 {
    font-size: 16px;
  }
}
.hero-section__content h2 {
  font-style: italic;
  font-size: 20px;
  border-bottom: 1px solid #fff;
  display: inline-block;
  line-height: 1em;
  margin-top: 20px;
}
@media (max-width: 1080px) {
  .hero-section__content h2 {
    font-size: 16px;
    border-bottom: 0;
  }
}
.hero-section__content p {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0;
  margin-top: 20px;
}
.hero-section__content .buttons-wrap {
  display: flex;
  flex-direction: row;
  gap: 25px;
  margin-top: 20px;
}
@media (max-width: 1080px) {
  .hero-section__content .buttons-wrap {
    display: block;
  }
}
.hero-section__content .transparent-button {
  color: #FEFEFE;
  border: 1px solid #FEFEFE;
}
@media (max-width: 1080px) {
  .hero-section__content .transparent-button {
    margin-top: 20px;
  }
}
.hero-section__content .transparent-button:hover {
  color: #E5603B;
  border: 1px solid #E5603B;
}
.hero-section__content .transparent-button:active {
  color: #FEFEFE;
  background-color: #E5603B;
}

.trip-floating-bar {
  position: sticky;
  top: 88px;
  z-index: 900;
  background-color: #f4f2ea;
  border-bottom: 1px solid rgba(24, 49, 56, 0.12);
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  display: none;
}
@media (max-width: 767px) {
  .trip-floating-bar {
    top: 88px;
  }
}
.trip-floating-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 20px;
}
.trip-floating-bar__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #183138;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trip-floating-bar__btn {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  padding: 12px 32px;
  background-color: #e5603b;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
@media (max-width: 767px) {
  .trip-floating-bar__btn {
    padding: 10px 20px;
  }
}
.trip-floating-bar__btn:hover, .trip-floating-bar__btn:focus {
  background-color: #f96b43;
}
.trip-floating-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  display: block;
}

@media (max-width: 767px) {
  .single-post .hero-section {
    padding-top: 160%;
    background-attachment: scroll;
    height: auto;
  }
  .single-post .hero-section__content {
    top: 0;
    position: relative;
  }
}
