@charset "UTF-8";

/* Montserrat @font-face blokovi uklonjeni — font je zamijenjen Apple
   system SF Pro stack-om kroz `var(--font-system)` tokene. Fontovi se
   više ne učitavaju, što štedi 8 × woff2 downloada po svakom page load-u. */
@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-Medium.woff2") format("woff2"), url("../fonts/DancingScript-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-Bold.woff2") format("woff2"), url("../fonts/DancingScript-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-SemiBold.woff2") format("woff2"), url("../fonts/DancingScript-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-Regular.woff2") format("woff2"), url("../fonts/DancingScript-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Lora @font-face blokovi uklonjeni — zamijenjeni Apple SF stack-om
   kroz `var(--font-system)`. 4 × woff2 downloada manje po page load-u. */
:root {
  --gold: #C8963E;
  --gold-light: #D4A843;
  --gold-dark: #A07830;
  --gold-gradient: linear-gradient(135deg, #D4A843 0%, #C8963E 50%, #A07830 100%);
  --gold-gradient-h: linear-gradient(90deg, #D4A843 0%, #C8963E 50%, #A07830 100%);
  --dark: #1A1A1A;
  --dark-soft: #2D2D2D;
  --text: #1A1A1A;
  --text-secondary: #555555;
  --bg-warm: #FAF9F6;
  --bg-light: #F5F3EF;
  --bg-grey: #EDEAE4;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(200,150,62,0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* ============================================================
     Apple premium tipografija — SF Pro Display/Text kao primarni
     stack za cijeli CMS (frontend + admin). Koristimo sistemske
     fontove (ne web-font download) jer daju native Apple rendering
     na macOS/iOS, a na drugim OS-evima graceful fallback na Inter/
     Segoe UI/Roboto.

     Dancing Script ostaje kao brand "script" akcent za
     `.about-label-page` i slično — prepoznatljiv luksuzni detalj.
     ============================================================ */
  --font-system: -apple-system, BlinkMacSystemFont, "SF Pro Display",
                 "SF Pro Text", "Inter", "Helvetica Neue", "Segoe UI",
                 Roboto, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display",
                  "Inter", "Helvetica Neue", "Segoe UI", Roboto, sans-serif;
  --font-mono: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;
  --font-script: "Dancing Script", cursive;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-system);
  overflow-x: hidden;
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  padding: 0;
  color: var(--text);
  position: relative;
  letter-spacing: 0.35px;
  background-color: var(--bg-warm);
}

.no-scroll {
  overflow-y: hidden;
}

.max-width {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media only screen and (max-width: 1600px) {
  .max-width {
    max-width: 85%;
  }
}
@media only screen and (max-width: 1400px) {
  .max-width {
    max-width: 90%;
  }
}

h1 {
  font-family: var(--font-system);
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.2px;
  line-height: 1.1;
}
@media screen and (max-width: 575px) {
  h1 {
    font-size: 35px;
    letter-spacing: 1px;
  }
}

h2 {
  font-family: var(--font-system);
  font-size: 45px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
  line-height: 1.15;
}
@media screen and (max-width: 575px) {
  h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }
}

h3 {
  font-family: var(--font-system);
  font-size: 32px;
  letter-spacing: 0.5px;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 575px) {
  h3 {
    font-size: 25px;
  }
}

h4 {
  font-family: var(--font-system);
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--dark);
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-family: var(--font-system);
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: var(--text);
  transition: color var(--transition);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

.padding-tb {
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .padding-tb {
    padding: 40px 0;
  }
}

.btn {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-system);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gold-gradient-h);
  border: none;
  border-radius: 50px;
  padding: 0 32px;
  width: 100%;
  max-width: 240px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  box-shadow: 0 4px 15px rgba(200,150,62,0.3);
  overflow: hidden;
}
.btn::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  height: 24px;
  width: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25) url("../images/more-arr-w.svg") no-repeat;
  background-position: center;
  transition: all var(--transition);
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}
.btn:hover {
  box-shadow: 0 6px 25px rgba(200,150,62,0.45);
  transform: translateY(-2px);
}
.btn:hover::before {
  left: 100%;
}
.btn:hover::after {
  background-color: rgba(255,255,255,0.35);
  transform: translateX(3px);
}

.home2.reveal {
  transform: translateY(250px);
}

.home2.reveal.active {
  transform: translateY(100px);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

.reveal {
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.8s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.center-title {
  text-align: center;
}
.center-title p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
}
.center-title span {
  justify-content: center;
}
.center-title span::before {
  display: inline-block;
  width: 40px;
  height: 2px;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
}
@media screen and (max-width: 767px) {
  .center-title span::before {
    width: 25px;
    height: 2px;
    top: auto;
  }
}

.title {
  position: relative;
}

.title p {
  margin-top: 10px;
  color: var(--text-secondary);
}

.title span {
  margin-bottom: 12px;
  display: inline-flex;
}
@media screen and (max-width: 575px) {
  .title span {
    letter-spacing: 2px;
    font-size: 12px;
  }
}

span {
  font-family: var(--font-system);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  padding-left: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
span::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold-gradient-h);
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  flex-shrink: 0;
}

.pagination {
  list-style: none;
  width: 100%;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-top: 50px;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 767px) {
  .pagination {
    gap: 20px;
  }
}
.pagination li {
  width: 49px;
  height: 49px;
}
@media screen and (max-width: 767px) {
  .pagination li {
    width: 40px;
    height: 40px;
  }
}
.pagination li a {
  color: #fff;
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  font-family: var(--font-system);
  background-color: var(--dark);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .pagination li a {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.pagination li .active {
  background-color: var(--gold);
  color: #fff;
}
.pagination li:has(svg) a {
  background-color: transparent;
}

.pagination-news {
  margin-top: 80px;
}

.mt {
  margin-top: 140px;
}
@media screen and (max-width: 991px) {
  .mt {
    margin-top: 120px;
  }
}
@media screen and (max-width: 575px) {
  .mt {
    margin-top: 90px;
  }
}

.mt2 {
  margin-top: 200px;
}
@media screen and (max-width: 991px) {
  .mt2 {
    margin-top: 75px;
  }
}

.padding-t {
  padding: 80px 0;
}
@media screen and (max-width: 575px) {
  .padding-t {
    padding: 40px 0;
  }
}

.big-padding-t {
  padding-top: 200px;
}
@media screen and (max-width: 575px) {
  .big-padding-t {
    padding-top: 40px;
  }
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.543942577) 18%, rgba(255, 255, 255, 0) 73%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
  z-index: 0;
}

.dark-overlay35 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.dark-overlay20 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 51%, rgba(255, 255, 255, 0) 96%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
  z-index: 2;
}

.dark-overlay10 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.0957633053) 68%, rgba(255, 255, 255, 0) 96%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}

.dark-overlay50 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5019257703) 94%, rgba(0, 0, 0, 0.5019257703) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  z-index: 1;
}

.to-top-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1461834734) 68%, rgba(255, 255, 255, 0) 96%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}

.to-bottom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.52) 18%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#FFFFFF", GradientType=0);
}

.beige-background {
  position: relative;
  background-color: var(--bg-warm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.grey-background {
  background-color: var(--bg-light);
  position: relative;
}

.smaller-title h1 {
  font-size: 32px;
  font-weight: 800;
}
@media screen and (max-width: 575px) {
  .smaller-title h1 {
    font-size: 30px;
  }
}
.smaller-title h2 {
  font-size: 32px;
  font-weight: 800;
}
@media screen and (max-width: 575px) {
  .smaller-title h2 {
    font-size: 30px;
  }
}

.line-title h3,
.line-title h2 {
  position: relative;
}
.line-title h3::before,
.line-title h2::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -14.5%;
  width: 55px;
  height: 1px;
  background: var(--gold-gradient-h);
}
@media screen and (max-width: 991px) {
  .line-title h3::before,
  .line-title h2::before {
    display: none;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 150, 62, 0.1);
}
header .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
header .logo {
  width: 100%;
  max-width: 240px;
  height: 140px;
  position: relative;
  transition: all var(--transition);
  flex-shrink: 0;
  margin: -40px 0 -40px 0;
  z-index: 10;
}

header .logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 154px;
  height: 154px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(45, 45, 45, 0.95) 100%);
  border-radius: 50%;
  border: 2px solid rgba(200, 150, 62, 0.3);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(200, 150, 62, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: -1;
}

@keyframes logoGlow {
  0%, 100% {
    border-color: rgba(200, 150, 62, 0.3);
    box-shadow: 
      0 10px 40px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(200, 150, 62, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
  25% {
    border-color: rgba(200, 150, 62, 0.4);
    box-shadow: 
      0 11px 42px rgba(0, 0, 0, 0.32),
      0 0 12px rgba(200, 150, 62, 0.15),
      0 0 0 1px rgba(200, 150, 62, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  50% {
    border-color: rgba(200, 150, 62, 0.5);
    box-shadow: 
      0 12px 45px rgba(0, 0, 0, 0.35),
      0 0 25px rgba(200, 150, 62, 0.25),
      0 0 0 1px rgba(200, 150, 62, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  75% {
    border-color: rgba(200, 150, 62, 0.4);
    box-shadow: 
      0 11px 42px rgba(0, 0, 0, 0.32),
      0 0 12px rgba(200, 150, 62, 0.15),
      0 0 0 1px rgba(200, 150, 62, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
}

@keyframes logoGlowWhite {
  0%, 100% {
    border-color: rgba(200, 150, 62, 0.4);
    box-shadow: 
      0 8px 30px rgba(0, 0, 0, 0.12),
      0 0 0 1px rgba(200, 150, 62, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  25% {
    border-color: rgba(200, 150, 62, 0.5);
    box-shadow: 
      0 9px 32px rgba(0, 0, 0, 0.13),
      0 0 10px rgba(200, 150, 62, 0.17),
      0 0 0 1px rgba(200, 150, 62, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
  50% {
    border-color: rgba(200, 150, 62, 0.6);
    box-shadow: 
      0 10px 35px rgba(0, 0, 0, 0.15),
      0 0 20px rgba(200, 150, 62, 0.2),
      0 0 0 1px rgba(200, 150, 62, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
  75% {
    border-color: rgba(200, 150, 62, 0.5);
    box-shadow: 
      0 9px 32px rgba(0, 0, 0, 0.13),
      0 0 10px rgba(200, 150, 62, 0.17),
      0 0 0 1px rgba(200, 150, 62, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
}

header .logo:hover::before {
  border-color: rgba(200, 150, 62, 0.6);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(200, 150, 62, 0.3),
    0 0 0 1px rgba(200, 150, 62, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) scale(1.05);
  animation-play-state: paused;
  transition: all 0.3s ease;
}
header .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
  padding: 38px 28px 18px 28px;
}

header .logo:hover img {
  transform: scale(1.05);
}
header .logo img:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all var(--transition);
  position: absolute;
  top: 0;
  left: 0;
}
header ul {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: flex-end;
  flex: 1;
}

header .lang {
  flex-shrink: 0;
}
header ul li {
  background-color: transparent;
  transition: all var(--transition);
  padding: 0;
}
header ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-system);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all var(--transition);
  position: relative;
  padding: 8px 0;
  display: inline-block;
}
header ul li.active, header ul li:hover {
  background-color: transparent;
  transition: all var(--transition);
}
header ul li.active a {
  color: #fff;
  font-weight: 600;
}
header ul li.active a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient-h);
  box-shadow: 0 0 10px rgba(200, 150, 62, 0.6);
}
header ul li:hover a {
  color: #fff;
  transform: translateY(-2px);
}
header ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--gold-gradient-h);
  transition: transform 0.3s ease;
}
header ul li:hover a::before {
  transform: translateX(-50%) scaleX(1);
}
header ul li.mobile-lang, header ul li.mobile-contact {
  display: none;
}
/* ===== Language switcher (premium dropdown) ===== */
header details.lang {
  position: relative;
  cursor: pointer;
}

header details.lang > summary {
  list-style: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-system);
  color: #fff;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 30px 8px 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  background-image:
    url("../images/arr-down-w.svg"),
    url("../images/language.svg");
  background-position: right 10px center, left 10px center;
  background-repeat: no-repeat, no-repeat;
  background-size: 10px auto, 18px auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
  user-select: none;
  white-space: nowrap;
}

header details.lang > summary::-webkit-details-marker { display: none; }
/* Remove the inherited global `span::before` gold dash bug for summary markers */
header details.lang > summary::before { content: none; display: none; }

header details.lang > summary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 150, 62, 0.6);
}

header details.lang[open] > summary {
  background-color: rgba(200, 150, 62, 0.15);
  border-color: rgba(200, 150, 62, 0.7);
}

header details.lang > ul {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  transform: none;
  min-width: 140px;
  margin: 0;
  padding: 6px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform-origin: top right;
  transform: translateY(-6px) scale(0.98);
  transition:
    opacity 0.22s ease,
    transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0.22s;
  pointer-events: none;
}

header details.lang[open] > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Small arrow pointer on the dropdown */
header details.lang > ul::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 18px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}

header details.lang > ul > li {
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: background 0.2s ease;
}

header details.lang > ul > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: #1a1a1a;
  font-family: var(--font-system);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

header details.lang > ul > li:hover {
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.12) 0%, rgba(200, 150, 62, 0.04) 100%);
}

header details.lang > ul > li:hover > a {
  color: var(--gold, #c8963e);
  transform: translateX(2px);
}

header details.lang > ul > li.active {
  background: linear-gradient(135deg, var(--gold-light, #D4A843) 0%, var(--gold, #C8963E) 100%);
}

header details.lang > ul > li.active > a {
  color: #ffffff;
  font-weight: 700;
}

header details.lang > ul > li.active > a::before {
  content: none;
}
header.small-header {
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(200, 150, 62, 0.15);
}
header.small-header .logo {
  max-width: 240px;
  height: 140px;
  margin: -40px 0 -40px 0;
  transition: all var(--transition);
}

header.small-header .logo::before {
  width: 154px;
  height: 154px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 249, 246, 0.95) 100%);
  border-color: rgba(200, 150, 62, 0.4);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(200, 150, 62, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

header.small-header .logo:hover::before {
  border-color: rgba(200, 150, 62, 0.7);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(200, 150, 62, 0.2),
    0 0 0 1px rgba(200, 150, 62, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  animation-play-state: paused;
  transition: all 0.3s ease;
}
header.small-header .logo img:first-child {
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
  transition: all var(--transition);
  position: absolute;
  top: 0;
  left: 0;
}
header.small-header .logo img:nth-child(2) {
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  filter: none;
  padding: 38px 28px 18px 28px;
}
header.small-header ul li {
  padding: 0;
}
header.small-header ul li a {
  color: var(--dark);
}
header.small-header details summary {
  color: var(--dark);
}
header.small-header .ham .line {
  stroke: var(--dark);
}
header.small-header ul li.active, header.small-header ul li:hover {
  background-color: transparent;
}
header.small-header ul li.active a, header.small-header ul li:hover a {
  color: var(--gold);
}
/* --- small-header (scrolled) state: light background, dark text --- */
header.small-header details.lang > summary {
  color: var(--dark);
  border-color: rgba(0, 0, 0, 0.12);
  background-image:
    url(../images/arr-down-g.svg),
    url(../images/language-g.svg);
}

header.small-header details.lang > summary:hover {
  background-color: rgba(200, 150, 62, 0.08);
  border-color: rgba(200, 150, 62, 0.45);
}

header.small-header details.lang[open] > summary {
  background-color: rgba(200, 150, 62, 0.12);
  border-color: rgba(200, 150, 62, 0.6);
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  display: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #fff;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham4 .top {
  stroke-dasharray: 40 121;
}

.ham4 .bottom {
  stroke-dasharray: 40 121;
}

.ham4.active .top {
  stroke-dashoffset: -68px;
}

.ham4.active .bottom {
  stroke-dashoffset: -68px;
}

@media only screen and (max-width: 1199px) {
  .ham {
    display: block;
  }
  header {
    background: rgba(26, 26, 26, 0.98);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    padding: 12px 0;
  }
  header .max-width {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  header details.lang {
    display: none;
  }
  header .logo {
    max-width: 110px;
    height: 110px;
    margin: -30px 0;
  }
  header .logo::before {
    width: 121px;
    height: 121px;
  }
  header .logo img {
    padding: 28px 20px 12px 20px;
  }
  header ul {
    transform: translateX(-50%);
    top: 90px;
    left: 50%;
    position: absolute;
    opacity: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.97);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    transition: opacity var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
    padding: 50px 20px 0 20px;
    gap: 0;
  }
  header ul li {
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    width: 100%;
    text-align: center;
  }
  header ul li.active {
    background: linear-gradient(90deg, rgba(200, 150, 62, 0.15) 0%, transparent 100%);
    border-left: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(200, 150, 62, 0.1);
  }
  header ul li.active a {
    color: var(--gold-light);
  }
  header ul li.active::before {
    display: none;
  }
  header ul li.active::after {
    display: none;
  }
  header ul li.mobile-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  header ul li.mobile-lang a {
    font-size: 20px;
  }
  header ul li.mobile-lang a.active {
    color: var(--gold-light);
  }
  header ul li.mobile-contact {
    display: flex;
    flex-direction: column;
  }
  header ul li.mobile-contact a {
    text-transform: none;
    margin-bottom: 10px;
    color: var(--gold-light);
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  header.mobile-header ul {
    opacity: 1;
    pointer-events: all;
  }
  header.small-header {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  }
  header.small-header .logo {
    max-width: 110px;
    height: 110px;
    margin: -30px 0;
  }
  header.small-header .logo::before {
    width: 121px;
    height: 121px;
  }
  header.small-header .logo img:first-child {
    opacity: 0;
    visibility: hidden;
    height: 0;
    width: 0;
  }
  header.small-header .logo img:nth-child(2) {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    padding: 28px 20px 12px 20px;
  }
  header.small-header ul {
    background-color: rgba(255, 255, 255, 0.98);
  }
  header.small-header ul li.active {
    background: linear-gradient(90deg, rgba(200, 150, 62, 0.15) 0%, transparent 100%);
    border-left: 3px solid var(--gold);
  }
  header.small-header ul li.active a {
    color: var(--gold);
  }
  header.small-header ul li {
    padding: 10px;
  }
  header.small-header ul li a {
    color: var(--dark);
  }
  header.small-header ul li.mobile-contact a {
    color: var(--gold);
  }
  header.small-header .ham .line {
    stroke: var(--dark);
  }
}
@media only screen and (max-width: 576px) {
  header ul {
    top: 60px;
  }
  header ul li.active::after {
    width: 6%;
    left: -6%;
  }
  header ul li.active::before {
    width: 6%;
    right: -6%;
  }
  header .logo {
    max-width: 90px;
    height: 90px;
    margin: -25px 0;
  }
  header .logo::before {
    width: 99px;
    height: 99px;
  }
  header .logo img {
    padding: 24px 16px 8px 16px;
  }
  header .ham {
    width: 50px;
    height: 50px;
  }
  header.small-header .logo {
    max-width: 90px;
    height: 90px;
    margin: -25px 0;
  }
  header.small-header .logo::before {
    width: 99px;
    height: 99px;
  }
}

.background {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(200, 150, 62, 0.15) 50%, rgba(26, 26, 26, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}

.background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 575px) {
  .background {
    height: 100vh;
    min-height: 400px;
  }
}

.main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1280px;
  text-align: center;
  z-index: 3;
  padding: 0 20px;
}

.main-title .title {
  position: relative;
}

.main-title .title::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, 
    rgba(212, 168, 67, 1) 0%,
    rgba(200, 150, 62, 0.8) 30%,
    rgba(200, 150, 62, 0.4) 70%,
    transparent 100%);
  box-shadow: 
    0 0 20px rgba(200, 150, 62, 0.7),
    0 0 40px rgba(200, 150, 62, 0.4),
    0 0 60px rgba(200, 150, 62, 0.2);
}

@media screen and (max-width: 767px) {
  .main-title .title::after {
    height: 60px;
    bottom: -60px;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.main-title h1,
.main-title h2 {
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 35px;
  line-height: 1.2;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, rgba(200, 150, 62, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 4px 40px rgba(0,0,0,0.6)) drop-shadow(0 2px 15px rgba(200, 150, 62, 0.3));
  animation: fadeInUp 1s ease-out;
  position: relative;
}

@keyframes shimmer {
  0% {
    filter: drop-shadow(0 4px 40px rgba(0,0,0,0.6)) drop-shadow(0 2px 15px rgba(200, 150, 62, 0.3));
  }
  100% {
    filter: drop-shadow(0 4px 40px rgba(0,0,0,0.6)) drop-shadow(0 2px 20px rgba(200, 150, 62, 0.5));
  }
}

@media screen and (max-width: 1024px) {
  .main-title h1,
  .main-title h2 {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .main-title h1,
  .main-title h2 {
    font-size: 42px;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 575px) {
  .main-title h1,
  .main-title h2 {
    font-size: 36px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-title .title span {
  display: inline-block;
  color: #FFFFFF;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 5px;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(200, 150, 62, 0.8),
    0 0 50px rgba(200, 150, 62, 0.4);
  animation: fadeInUp 1s ease-out 0.2s both;
  position: relative;
  padding: 12px 80px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(200, 150, 62, 0.25) 20%, 
    rgba(200, 150, 62, 0.35) 50%,
    rgba(200, 150, 62, 0.25) 80%, 
    transparent);
  border-radius: 50px;
  line-height: 1.8;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 150, 62, 0.4);
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(200, 150, 62, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .main-title .title span {
    font-size: 14px;
    letter-spacing: 3px;
    padding: 10px 40px;
  }
}

.main-title .title span::before,
.main-title .title span::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(200, 150, 62, 0.5) 20%,
    rgba(212, 168, 67, 1) 50%,
    rgba(200, 150, 62, 0.5) 80%,
    transparent);
  box-shadow: 
    0 0 20px rgba(200, 150, 62, 0.8),
    0 0 40px rgba(200, 150, 62, 0.5),
    0 2px 8px rgba(200, 150, 62, 0.4);
}

.main-title .title span::before {
  left: 0;
}

.main-title .title span::after {
  right: 0;
}
@media screen and (max-width: 767px) {
  .main-title .title span::before,
  .main-title .title span::after {
    width: 30px;
  }
}

.main-title .title p {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.9;
  max-width: 950px;
  margin: 0 auto;
  text-shadow: 
    0 2px 6px rgba(0, 0, 0, 1),
    0 4px 15px rgba(0, 0, 0, 0.8),
    0 8px 30px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s ease-out 0.4s both;
  padding: 32px 55px;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.65) 0%, 
    rgba(26, 26, 26, 0.75) 50%,
    rgba(0, 0, 0, 0.65) 100%);
  border-radius: 25px;
  border: 2px solid rgba(200, 150, 62, 0.5);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow: 
    0 10px 50px rgba(0, 0, 0, 0.7),
    0 5px 25px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 0 100px rgba(200, 150, 62, 0.2);
}
@media screen and (max-width: 767px) {
  .main-title .title p {
    font-size: 17px;
    padding: 25px 30px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 575px) {
  .main-title .title p {
    font-size: 15px;
    padding: 22px 25px;
  }
}

.main-top-social,
.main-top-social .social,
.main-top-social p {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-top-social {
  position: absolute;
  z-index: 3;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 575px) {
  .main-top-social {
    top: 55%;
  }
}

.main-top-social p {
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  font-weight: 500;
  line-height: 100%;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  flex-direction: row;
  font-family: var(--font-system);
  font-size: 12px;
}
@media screen and (max-width: 575px) {
  .main-top-social p {
    font-size: 12px;
  }
}

.main-top-social p::after {
  content: "";
  height: 35px;
  width: 1px;
  background-color: #fff;
  margin: 25px 0;
}
@media screen and (max-width: 575px) {
  .main-top-social p::after {
    margin: 10px 0;
  }
}

.main-top-social .social a {
  width: 16px;
  height: 16px;
}

.main-top-social .social a + a {
  margin-left: 0;
  margin-top: 15px;
}

.main-top-social .social a svg {
  width: 100%;
  height: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-indicator span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-system);
  font-weight: 500;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold-light) 0%, transparent 100%);
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

@media screen and (max-width: 767px) {
  .scroll-indicator {
    display: none;
  }
}

.image-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .image-text-wrapper {
    flex-direction: column;
  }
}
.image-text-wrapper .image {
  width: 50%;
}
@media screen and (max-width: 1199px) {
  .image-text-wrapper .image {
    width: 100%;
  }
}
.image-text-wrapper .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  border-radius: var(--radius-md);
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1199px) {
  .image-text-wrapper .image img {
    height: 400px;
  }
}
@media screen and (max-width: 575px) {
  .image-text-wrapper .image img {
    height: 300px;
  }
}
.image-text-wrapper .text {
  width: 45%;
}
@media screen and (max-width: 1199px) {
  .image-text-wrapper .text {
    width: 100%;
    margin-top: 30px;
  }
}
.image-text-wrapper .text p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.image-text-wrapper .text p:last-of-type {
  margin-bottom: 0;
}

.videobg {
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  margin-bottom: 100px;
}
@media screen and (max-width: 991px) {
  .videobg {
    margin-bottom: 50px;
    height: auto;
    padding: 70px 0;
  }
}
@media screen and (max-width: 767px) {
  .videobg {
    padding: 30px 0;
  }
}
.videobg .dark-overlay20 {
  z-index: 1;
}
.videobg .max-width {
  z-index: 2;
}
.videobg .video-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .videobg .video-cont {
    flex-direction: column;
  }
}
.videobg .video-cont h2 {
  color: #fff;
}
.videobg .video-cont .video-text {
  width: 100%;
  max-width: 760px;
}
.videobg .video-cont .play {
  width: 100%;
  max-width: 370px;
  height: 370px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  background-image: url("../images/play.png");
  background-repeat: no-repeat;
  background-position: center;
  transition: all var(--transition);
  cursor: pointer;
}
.videobg .video-cont .play:hover {
  border-color: var(--gold-light);
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(200,150,62,0.2);
}
@media screen and (max-width: 991px) {
  .videobg .video-cont .play {
    max-width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 575px) {
  .videobg .video-cont .play {
    height: 100px;
    width: 100px;
    margin-top: 20px;
  }
}

.videobg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -10;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.video-wrap .video {
  background-color: transparent;
  padding: 10px;
  width: 90%;
  height: 80%;
  max-width: 800px;
  max-height: 500px;
  position: relative;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
}

.video-wrap.open-video {
  z-index: 105;
  opacity: 1;
}

.video-wrap .video .closeVideo {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: rgba(26,26,26,0.5);
  top: -25px;
  right: -25px;
  cursor: pointer;
  background-image: url(../images/close.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;
  transition: all var(--transition);
}
.video-wrap .video .closeVideo:hover {
  background-color: var(--gold);
}
@media screen and (max-width: 575px) {
  .video-wrap .video .closeVideo {
    width: 40px;
    height: 40px;
    right: -15px;
    top: -20px;
  }
}

.images-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .images-text-wrapper {
    flex-direction: column;
  }
}
.images-text-wrapper .images {
  width: 55%;
  position: relative;
  height: 650px;
}
@media screen and (max-width: 1199px) {
  .images-text-wrapper .images {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .images-text-wrapper .images {
    height: 400px;
  }
}
.images-text-wrapper .images img {
  width: 100%;
  max-width: 513px;
  height: 567px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: var(--radius-lg);
  position: absolute;
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.images-text-wrapper .images:hover img:first-of-type {
  transform: translate(5px, -5px);
}
.images-text-wrapper .images:hover img:nth-of-type(2) {
  transform: translate(-5px, 5px);
}
@media screen and (max-width: 767px) {
  .images-text-wrapper .images img {
    height: 300px;
    max-width: 250px;
  }
}
.images-text-wrapper .images img:first-of-type {
  right: 0;
  bottom: -15%;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .images-text-wrapper .images img:first-of-type {
    bottom: 0;
  }
}
.images-text-wrapper .images img:nth-of-type(2) {
  top: -15%;
  z-index: 0;
}
@media screen and (max-width: 1199px) {
  .images-text-wrapper .images img:nth-of-type(2) {
    top: 0;
  }
}
.images-text-wrapper .text {
  width: 42%;
}
@media screen and (max-width: 1199px) {
  .images-text-wrapper .text {
    width: 100%;
    margin-top: 30px;
  }
}
.images-text-wrapper .text p {
  margin-top: 20px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.images-text-wrapper .text .btn {
  margin-top: 30px;
}

.full-image-text-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 410px;
  margin-top: 40px;
}

 .full-image-text-wrapper .max-width:has(p.mobile-text){
  display: none;
  
 }
@media screen and (max-width: 1199px) {
  .full-image-text-wrapper {
    /* flex-direction: column; */
    height: auto;
    flex-wrap: wrap;
  }
}
.full-image-text-wrapper .text {
  width: 100%;
  max-width: 600px;
  
}
@media screen and (max-width: 1199px) {
  .full-image-text-wrapper .text {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .full-image-text-wrapper .max-width{
    flex: 0 0 calc(50% - 5%);
  }

  .full-image-text-wrapper .text p.desktop-text{
    display: none;
  }

    .full-image-text-wrapper .max-width:has(p.mobile-text){
      flex: 0 0 100%;
      display: flex;
    }
  .full-image-text-wrapper p.mobile-text{
    width: 100%;
    margin-top: 15px;
  }

  .full-image-text-wrapper .text .title h3{
    font-size: 20px;
    line-height: 25px;
  }

  .full-image-text-wrapper .text .title span{
    font-size: 16px;
  }

}
.full-image-text-wrapper .text .title span {
  padding-left: 0;
}
.full-image-text-wrapper .text .title span::before {
  display: none;
}
.full-image-text-wrapper .text p {
  margin-top: 20px;
}
.full-image-text-wrapper .image {
  position: absolute;
  width: 52vw;
  height: 410px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1500px) {
  .full-image-text-wrapper .image {
    width: 44vw;
    height: 350px;
  }
}
@media screen and (max-width: 1199px) {
  .full-image-text-wrapper .image {
    position: relative;
    width: 100%;
    transform: none;
    top: auto;
    flex: 0 0 50%;
    height: 194px;
  }
}
@media screen and (max-width: 767px) {

}
.full-image-text-wrapper .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
@media screen and (max-width: 1199px) {
  .full-image-text-wrapper .image img {
    border-radius: var(--radius-md);
  }
}
.full-image-text-wrapper.reverse .image {
  left: 0;
  right: auto;
}
.full-image-text-wrapper.reverse .image img {
  border-radius: 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media screen and (max-width: 1199px) {
  .full-image-text-wrapper.reverse{
    flex-direction: row-reverse;
  }
  .full-image-text-wrapper.reverse .image img {
    border-radius: var(--radius-md);
  }
}
.full-image-text-wrapper.reverse .text {
  margin-left: auto;
}

.hotel-section {
  height: 720px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/hotel-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.hotel-section .max-width{
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .hotel-section {
    height: auto;
  }

  .hotel-section {
    background-image: url('../images/hotel-bg-mobile.webp');
  }
}
.hotel-section .hotel-wrapper h2,
.hotel-section .hotel-wrapper p {
  color: #fff;
}
.hotel-section .hotel-wrapper span {
  color: var(--gold-light);
  padding-left: 0;
}
.hotel-section .hotel-wrapper p {
  margin-top: 20px;
}
.hotel-section .hotel-wrapper .btn {
  background: var(--white);
  color: var(--dark);
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hotel-section .hotel-wrapper .btn::after {
  background: var(--gold-gradient-h);
}
.hotel-section .hotel-wrapper .btn:hover {
  background: var(--gold-gradient-h);
  color: #fff;
  box-shadow: var(--shadow-gold);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 50px;
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog {
  transition: transform var(--transition);
}
.blog:hover {
  transform: translateY(-8px);
}
.blog .blog-img {
  height: 500px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media screen and (max-width: 767px) {
  .blog .blog-img {
    height: 300px;
  }
}
.blog .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog .blog-img img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog:hover .blog-img img {
  transform: scale(1.05);
}
.blog .blog-img .blog-category {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gold-gradient-h);
  color: #fff;
  padding: 10px 20px;
  border-top-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-date {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-top: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: var(--font-system);
}

.blog .blog-title {
  font-family: var(--font-system);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.3;
}

.blog .blog-description {
  font-weight: 400;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.brends-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .brends-wrapper {
    grid-template-columns: 1fr;
  }
}
.brends-wrapper .brend {
  width: 100%;
  height: 600px;
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.brends-wrapper .brend:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.brends-wrapper .brend:hover .brend-cover {
  transform: scale(1.06);
}
@media screen and (max-width: 767px) {
  .brends-wrapper .brend {
    height: 450px;
    padding: 20px;
  }
}
.brends-wrapper .brend .brend-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.brends-wrapper .brend .brend-content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.brends-wrapper .brend .brend-content p {
  color: #fff;
  margin-bottom: 25px;
  font-size: 24px;
  font-family: var(--font-system);
}
@media screen and (max-width: 767px) {
  .brends-wrapper .brend .brend-content p {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.brends-wrapper .brend .brend-content p.floor {
  font-weight: 700;
  margin-bottom: 0;
}
.brends-wrapper .brend .brend-content img {
  width: 100%;
  max-height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 25px 0;
}
@media screen and (max-width: 767px) {
  .brends-wrapper .brend .brend-content img {
    max-height: 95px;
  }
}
.brends-wrapper .brend .dark-overlay35 {
  border-radius: var(--radius-md);
}

/* Premium Showcase Section - Izdvajamo */
.premium-showcase-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.showcase-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25px 25px, rgba(200, 150, 62, 0.02) 2%, transparent 0%),
    radial-gradient(circle at 75px 75px, rgba(200, 150, 62, 0.02) 2%, transparent 0%);
  background-size: 100px 100px;
  pointer-events: none;
  opacity: 0.5;
}

.premium-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.showcase-card {
  position: relative;
  height: 100%;
  min-height: 550px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.showcase-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(200, 150, 62, 0.1);
}

.showcase-card:hover::before {
  opacity: 1;
}

.card-image-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.card-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover .card-background {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  transition: opacity 0.5s ease;
}

.showcase-card:hover .card-overlay {
  opacity: 0.8;
}

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 100%);
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
}

.showcase-card:hover .card-shine {
  animation: shine 1s ease-in-out;
}

@keyframes shine {
  to {
    left: 150%;
  }
}

.card-content {
  position: relative;
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  z-index: 2;
}

.card-number {
  position: absolute;
  top: -25px;
  right: 30px;
  font-family: var(--font-system);
  font-size: 72px;
  font-weight: bold;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  transition: all 0.5s ease;
  pointer-events: none;
}

.showcase-card:hover .card-number {
  opacity: 0.25;
  transform: scale(1.1);
}

.card-info {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-info p {
  font-family: var(--font-system);
  font-size: 15px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.showcase-card:hover .card-info p {
  color: var(--gold);
}

.card-info p.floor {
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 10px;
}

.showcase-card:hover .card-info p.floor {
  color: var(--gold);
}

.card-logo {
  margin: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  height: 120px;
}

.card-logo img {
  width: 100%;
  height: 100%;
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: all 0.5s ease;
}

.showcase-card:hover .card-logo img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.05);
}

.card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.1) 0%, rgba(200, 150, 62, 0.05) 100%);
  border: 1px solid rgba(200, 150, 62, 0.2);
  color: var(--gold);
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card-arrow::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(200, 150, 62, 0.1);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-card:hover .card-arrow {
  background: var(--gold);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(200, 150, 62, 0.3);
}

.showcase-card:hover .card-arrow::before {
  opacity: 1;
}

.card-arrow svg {
  transition: transform 0.4s ease;
}

.showcase-card:hover .card-arrow svg {
  transform: translateX(4px);
}

/* Responsive Design */
@media screen and (max-width: 1199px) {
  .premium-showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .showcase-card {
    height: auto;
  }
  
  .card-image-wrapper {
    height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .showcase-card {
    height: auto;
  }
  
  .card-image-wrapper {
    height: 250px;
  }
  
  .card-content {
    padding: 25px 20px;
  }
  
  .card-number {
    font-size: 56px;
    right: 20px;
  }
  
  .card-info p {
    font-size: 14px;
  }
  
  .card-logo {
    min-height: 100px;
    height: 100px;
  }
  
  .card-logo img {
    max-width: 180px;
    max-height: 80px;
  }
}

.categories-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -150px;
  z-index: 2;
  gap: 4px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .categories-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.categories-wrapper .category {
  position: relative;
  width: 100%;
  height: 275px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .categories-wrapper .category {
    padding: 10px;
    height: 170px;
  }
}
.categories-wrapper .category .category-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.categories-wrapper .category:hover .category-cover {
  transform: scale(1.08);
}
.categories-wrapper .category .category-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.categories-wrapper .category .category-content h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .categories-wrapper .category .category-content h2 {
    font-size: 20px;
    letter-spacing: 0.35px;
    font-weight: 500;
  }
}
.categories-wrapper .category .category-content .btn {
  width: 100%;
  margin: 0 auto;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all var(--transition);
}
@media screen and (max-width: 767px) {
  .categories-wrapper .category .category-content .btn {
    font-size: 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .categories-wrapper .category .category-content .btn::before{
    display: none;
  }
}
.categories-wrapper .category .category-content span {
  color: rgba(255,255,255,0.85);
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  transform: translateY(20px);
  transition: all var(--transition);
  padding-left: 0;
  min-height: 48px;
}
@media screen and (max-width: 767px) {
  .categories-wrapper .category .category-content span {
    font-size: 16px;
    font-weight: 500;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
.categories-wrapper .category .category-content span::before {
  display: none;
}
.categories-wrapper .category:hover .btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.categories-wrapper .category:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.categories-wrapper .category:nth-of-type(1) {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.categories-wrapper .category:nth-of-type(1) .category-cover {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.categories-wrapper .category:nth-of-type(1) .dark-overlay20 {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media screen and (max-width: 1199px) {
  .categories-wrapper .category:nth-of-type(1) {
    border-bottom-left-radius: 0;
  }
  .categories-wrapper .category:nth-of-type(1) .dark-overlay20 {
    border-bottom-left-radius: 0;
  }
  .categories-wrapper .category:nth-of-type(1) .category-cover {
    border-bottom-left-radius: 0;
  }
}
.categories-wrapper .category:nth-of-type(4) {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.categories-wrapper .category:nth-of-type(4) .category-cover {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.categories-wrapper .category:nth-of-type(4) .dark-overlay20 {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media screen and (max-width: 1199px) {
  .categories-wrapper .category:nth-of-type(4) {
    border-top-right-radius: 0;
  }
}
@media screen and (max-width: 1199px) {
  .categories-wrapper .category:nth-of-type(2) {
    border-top-right-radius: 20px;
  }
  .categories-wrapper .category:nth-of-type(2) .dark-overlay20 {
    border-top-right-radius: 20px;
  }
  .categories-wrapper .category:nth-of-type(2) .category-cover {
    border-top-right-radius: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .categories-wrapper .category:nth-of-type(3) {
    border-bottom-left-radius: 20px;
  }
  .categories-wrapper .category:nth-of-type(3) .dark-overlay20 {
    border-bottom-left-radius: 20px;
  }
  .categories-wrapper .category:nth-of-type(3) .category-cover {
    border-bottom-left-radius: 20px;
  }
}

.premium-highlight-section {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.premium-highlight-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(200, 150, 62, 0.3) 10%,
    rgba(200, 150, 62, 0.8) 50%,
    rgba(200, 150, 62, 0.3) 90%,
    transparent 100%);
  box-shadow: 0 0 30px rgba(200, 150, 62, 0.5);
  z-index: 5;
}

.premium-highlight-section::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--gold);
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  box-shadow: 
    0 0 20px rgba(200, 150, 62, 0.8),
    0 0 40px rgba(200, 150, 62, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.3);
  z-index: 6;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(200, 150, 62, 0.8),
      0 0 40px rgba(200, 150, 62, 0.4),
      inset 0 0 10px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(200, 150, 62, 1),
      0 0 60px rgba(200, 150, 62, 0.6),
      inset 0 0 15px rgba(255, 255, 255, 0.5);
  }
}

.premium-highlight-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(200, 150, 62, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(200, 150, 62, 0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.premium-highlight-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.highlight-decoration {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  position: relative;
  flex-shrink: 0;
}



.highlight-content {
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.highlight-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.15) 0%, rgba(200, 150, 62, 0.05) 100%);
  border: 2px solid rgba(200, 150, 62, 0.3);
  border-radius: 50%;
  color: var(--gold);
  position: relative;
}

.highlight-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(200, 150, 62, 0.15);
  border-radius: 50%;
}

.highlight-text {
  font-family: var(--font-system);
  font-size: 23px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin: 0;
  position: relative;
}

/* TinyMCE u blok ubacuje <p>, <strong> itd. Osiguravamo da stilovi
   `.highlight-text` prolaze na inner elemente bez dodatnih margina. */
.highlight-text p {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-shadow: inherit;
}
.highlight-text p + p {
  margin-top: 0.5em;
}

.highlight-text::before,
.highlight-text::after {
  content: '"';
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  position: absolute;
  line-height: 1;
}

.highlight-text::before {
  content: '"';
  top: -20px;
  left: -30px;
}

.highlight-text::after {
  content: '"';
  bottom: -30px;
  right: -30px;
}

@media screen and (max-width: 1199px) {
  .highlight-decoration {
    width: 80px;
  }
  
  .premium-highlight-wrapper {
    gap: 30px;
  }
  
  .highlight-text {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .premium-highlight-section {
    padding: 60px 0;
  }
  
  .premium-highlight-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .highlight-decoration {
    width: 100px;
    transform: rotate(90deg);
  }
  
  .highlight-text {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .highlight-text::before,
  .highlight-text::after {
    font-size: 36px;
  }
  
  .highlight-text::before {
    top: -15px;
    left: -20px;
  }
  
  .highlight-text::after {
    bottom: -20px;
    right: -20px;
  }
  
  .highlight-icon {
    width: 56px;
    height: 56px;
  }
}

.services-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-background-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 100px,
      rgba(200, 150, 62, 0.02) 100px,
      rgba(200, 150, 62, 0.02) 101px
    );
  pointer-events: none;
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 50px 40px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 150, 62, 0.1);
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient-h);
  transform: scaleX(1);
  transform-origin: left;
  transition: height var(--transition);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(200, 150, 62, 0.25), 0 0 0 1px rgba(200, 150, 62, 0.2);
}

.service-card:hover::before {
  height: 6px;
}

.service-icon {
  width: 94px;
  height: 94px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #FAF9F6 0%, #F5F3EF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
  z-index: -1;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gold-gradient);
  z-index: -2;
  opacity: 1;
  transition: all var(--transition);
  box-shadow: 0 0 20px rgba(200, 150, 62, 0.3);
}

.service-card:hover .service-icon::after {
  inset: -8px;
  box-shadow: 0 0 40px rgba(200, 150, 62, 0.6);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 40px rgba(200, 150, 62, 0.6);
  }
  50% {
    box-shadow: 0 0 60px rgba(200, 150, 62, 0.8);
  }
}

.service-icon svg {
  width: 44px;
  height: 44px;
  color: var(--gold);
  stroke-width: 1.5;
  transition: all var(--transition);
  filter: drop-shadow(0 2px 4px rgba(200, 150, 62, 0.15));
  z-index: 1;
}

.service-card:hover .service-icon svg {
  transform: translateY(-5px);
  filter: drop-shadow(0 4px 8px rgba(200, 150, 62, 0.25));
}

.service-card:hover .service-icon {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(200, 150, 62, 0.3);
}

.service-card h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: var(--font-system);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.service-card:hover h3 {
  color: var(--gold-dark);
}

.service-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .service-card {
    padding: 40px 30px;
  }
  
  .service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .service-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 25px;
  }
  
  .service-icon svg {
    width: 34px;
    height: 34px;
  }
}

.section-header-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.section-icon-small {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(200, 150, 62, 0.15);
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.section-icon-small svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.section-title-simple {
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-system);
  letter-spacing: 0.5px;
}

@media screen and (max-width: 767px) {
  .section-header-simple {
    margin-bottom: 35px;
    gap: 10px;
  }

  .section-icon-small {
    width: 40px;
    height: 40px;
  }

  .section-icon-small svg {
    width: 20px;
    height: 20px;
  }

  .section-title-simple {
    font-size: 22px;
  }
}

.section-header-center {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-icon-ornament {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 16px rgba(200, 150, 62, 0.15);
}

.section-icon-ornament::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gold-gradient);
  z-index: -1;
  opacity: 0.8;
}

.section-icon-ornament svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  stroke-width: 1.5;
}

.section-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  font-family: var(--font-system);
}


.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.section-divider span {
  display: block;
  height: 2px;
  background: var(--gold-gradient-h);
  border-radius: 2px;
}

.section-divider span:nth-child(1),
.section-divider span:nth-child(3) {
  width: 40px;
}

.section-divider span:nth-child(2) {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

@media screen and (max-width: 767px) {
  .section-header-center {
    margin-bottom: 40px;
  }

  .section-icon-ornament {
    width: 64px;
    height: 64px;
  }

  .section-icon-ornament svg {
    width: 28px;
    height: 28px;
  }

  .section-subtitle {
    font-size: 12px;
  }
}

.full-image-text-wrapper.reverse.about {
  min-height: 630px;
  margin-top: 0;
}
.full-image-text-wrapper.reverse.about .image {
  min-height: 630px;
}
@media screen and (max-width: 1199px) {
  .full-image-text-wrapper.reverse.about .image {
    display: none;
  }

  .full-image-text-wrapper.reverse.about .max-width{
    flex: 0 0 100%;
  }
}

.blog-details-text .links a {
  font-size: 24px;
  font-family: var(--font-system);
  font-weight: 600;
  padding-left: 40px;
  background-image: url("../images/pdf.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: contain;
  line-height: 30px;
}

.backBtn {
  background-image: none !important;
  margin-top: 30px;
}
.backBtn::before {
  content: "";
  background: var(--gold) url("../images/arr-prev-long-w.svg") no-repeat;
  background-position: center;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  bottom: 0;
}
.backBtn::after {
  display: none;
}

footer {
  background-color: var(--dark);
  padding-top: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 35px;
  }
}
footer .footer-logo {
  width: 100%;
  max-width: 276px;
  height: 170px;
}
@media screen and (max-width: 767px) {
  footer .footer-logo {
    height: 100px;
    max-width: 164px;
  }
}
footer .footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
footer .top-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  footer .top-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .top-footer h3 {
  width: 55%;
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.15;
}
@media screen and (max-width: 1299px) {
  footer .top-footer h3 {
    width: 60%;
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  footer .top-footer h3 {
    width: 100%;
    margin-top: 30px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  footer .top-footer h3 {
    font-size: 30px;
  }
}
footer .middle-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 50px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1199px) {
  footer .middle-footer {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  footer .middle-footer {
    padding-bottom: 35px;
  }
}
footer .middle-footer .contact-wrapper {
  width: 35%;
}
@media screen and (max-width: 1199px) {
  footer .middle-footer .contact-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }
}
footer .middle-footer .contact-wrapper a {
  color: var(--gold-light);
  font-weight: 600;
  transition: color var(--transition);
}
footer .middle-footer .contact-wrapper a:hover {
  color: #fff;
}
footer .middle-footer .contact-wrapper a.work-hours {
  margin-bottom: 15px;
  display: block;
}
footer .middle-footer .contact-wrapper p {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-system);
  font-weight: 600;
}
footer .middle-footer .contact-wrapper .contact-cont {
  margin-top: 30px;
}
footer .middle-footer .contact-wrapper .contact-cont h4 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
  letter-spacing: 2px;
}
footer .middle-footer .contact-wrapper .contact-cont .phones {
  display: flex;
  align-items: flex-start;
}
footer .middle-footer .contact-wrapper .contact-cont .phones a {
  display: block;
  margin-left: 5px;
}
footer .middle-footer .footer-lists {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 55%;
}
@media screen and (max-width: 1199px) {
  footer .middle-footer .footer-lists {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  footer .middle-footer .footer-lists {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  footer .middle-footer .footer-lists .list {
    margin-bottom: 15px;
  }
}
footer .middle-footer .footer-lists .list h4 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 2px;
}
footer .middle-footer .footer-lists .list ul li {
  margin-bottom: 15px;
}
footer .middle-footer .footer-lists .list ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-family: var(--font-system);
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
}
footer .middle-footer .footer-lists .list ul li a:hover {
  color: var(--gold-light);
  padding-left: 8px;
}
footer .middle-footer .socials-wrapper {
  position: absolute;
  bottom: 8%;
  left: 45%;
}
@media screen and (max-width: 1199px) {
  footer .middle-footer .socials-wrapper {
    position: relative;
    left: 0;
    bottom: 0;
  }
}
footer .middle-footer .socials-wrapper h4 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
  letter-spacing: 2px;
}
footer .middle-footer .socials-wrapper .socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .middle-footer .socials-wrapper .socials a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  transition: all var(--transition);
}
footer .middle-footer .socials-wrapper .socials a:hover {
  background: var(--gold-gradient);
  border: 1px solid transparent;
  transform: translateY(-3px);
}
footer .copyrights {
  background-color: rgba(255,255,255,0.03);
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
footer .copyrights p {
  font-size: 13px;
  text-align: center;
  font-weight: 500;
  font-family: var(--font-system);
  color: rgba(255,255,255,0.5);
}
footer .copyrights p a {
  transition: all var(--transition);
  color: rgba(255,255,255,0.5);
}
footer .copyrights p a:hover {
  color: var(--gold-light);
}

.small-background {
  width: 100%;
  height: 550px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .small-background {
    height: 300px;
  }
}
.small-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.filter-shops {
  margin-top: 30px;
}
.filter-shops form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.filter-shops form label {
  font-size: 24px;
  font-family: var(--font-system);
  font-weight: 600;
}
.filter-shops form details {
  margin-left: 10px;
  padding: 10px;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 10px;
  width: 180px;
  position: relative;
  cursor: pointer;
}
.filter-shops form details summary {
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("../images/arr-down-g.svg");
  background-repeat: no-repeat;
  background-position: 100%;
}
.filter-shops form details ul {
  position: absolute;
  top: 50px;
  left: 0;
  background-color: transparent;
  width: 100%;
  z-index: 5;
}
.filter-shops form details ul li {
  background-color: var(--dark);
  padding: 13px 15px;
  border-radius: 10px;
  margin-bottom: 5px;
  transition: background-color var(--transition);
}

.filter-shops form details ul li.active {
  background-color: var(--gold);
}
.filter-shops form details ul li:hover {
  background-color: var(--dark-soft);
}
.filter-shops form details ul li button {
  color: #fff;
  font-weight: 600;
  width: 100%;
  text-align: left;
}

.images-text-wrapper.about {
  padding: 70px 0;
  padding-bottom: 0;
}
.images-text-wrapper.about .images {
  width: 48%;
}
@media screen and (max-width: 1199px) {
  .images-text-wrapper.about .images {
    width: 100%;
  }
}
.images-text-wrapper.about .images::before {
  content: "";
  width: 70%;
  height: 110%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(200,150,62,0.3);
  position: absolute;
}
.images-text-wrapper.about .images img {
  max-width: 407px;
  height: 430px;
}
@media screen and (max-width: 767px) {
  .images-text-wrapper.about .images img {
    max-width: 250px;
    height: 250px;
  }
}
.images-text-wrapper.about .images img:first-of-type {
  bottom: 0;
}
.images-text-wrapper.about .images img:nth-of-type(2) {
  top: 0;
}
.images-text-wrapper.about .text {
  width: 48%;
}
@media screen and (max-width: 1199px) {
  .images-text-wrapper.about .text {
    width: 100%;
  }
}

.small-background .shop-image {
  width: 100%;
  max-width: 443px;
  height: 186px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .small-background .shop-image {
    height: 90px;
  }
}
.small-background .shop-image img {
  -o-object-fit: contain;
     object-fit: contain;
}

.shop-details-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .shop-details-wrapper {
    flex-direction: column;
  }
}
.shop-details-wrapper .shop-text {
  width: 45%;
}
@media screen and (max-width: 1199px) {
  .shop-details-wrapper .shop-text {
    width: 100%;
  }
}
.shop-details-wrapper .shop-text p {
  margin-top: 20px;
}
.shop-details-wrapper .shop-text a {
  margin-top: 40px;
}
.shop-details-wrapper .shop-information-wrapper {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .shop-details-wrapper .shop-information-wrapper {
    width: 100%;
    margin-top: 40px;
  }
}
.shop-details-wrapper .shop-information-wrapper::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 10%;
  width: 1px;
  height: 120%;
  background: var(--gold-gradient-h);
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .shop-details-wrapper .shop-information-wrapper::before {
    top: 0;
  }
}
.shop-details-wrapper .shop-information-wrapper::after {
  content: "";
  position: absolute;
  top: -10%;
  left: 30%;
  width: 115%;
  height: 115%;
  border-left: 1px solid rgba(200,150,62,0.3);
  border-bottom: 1px solid rgba(200,150,62,0.3);
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .shop-details-wrapper .shop-information-wrapper::after {
    top: 0;
  }
}
.shop-details-wrapper .shop-information-wrapper .work-hours-wrapper {
  width: 100%;
  background-color: var(--bg-light);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  position: relative;
}
.shop-details-wrapper .shop-information-wrapper .work-hours-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: -43%;
  width: 50%;
  height: 100%;
  background-color: var(--bg-light);
  z-index: -1;
}
@media only screen and (max-width: 1600px) {
  .shop-details-wrapper .shop-information-wrapper .work-hours-wrapper::after {
    right: -20%;
  }
}
.shop-details-wrapper .shop-information-wrapper .work-buttons {
  display: flex;
  align-items: center;
}
.shop-details-wrapper .shop-information-wrapper .work-buttons button {
  padding: 15px 20px;
  background-color: var(--dark);
  color: #fff;
  font-family: var(--font-system);
  font-weight: 600;
  transition: background-color var(--transition);
}
.shop-details-wrapper .shop-information-wrapper .work-buttons button:first-of-type {
  border-top-left-radius: 30px;
}
.shop-details-wrapper .shop-information-wrapper .work-buttons button:last-of-type {
  border-bottom-right-radius: 30px;
}
.shop-details-wrapper .shop-information-wrapper .work-buttons button.active {
  background: var(--gold-gradient-h);
}
.shop-details-wrapper .shop-information-wrapper .work-panel {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .shop-details-wrapper .shop-information-wrapper .work-panel {
    padding: 15px;
  }
}
.shop-details-wrapper .shop-information-wrapper .work-panel table {
  width: 100%;
}
.shop-details-wrapper .shop-information-wrapper .work-panel table tr td {
  font-size: 16px;
  font-family: var(--font-system);
  padding: 15px 0;
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}
@media screen and (max-width: 767px) {
  .shop-details-wrapper .shop-information-wrapper .work-panel table tr td {
    font-size: 14px;
  }
}
.shop-details-wrapper .shop-information-wrapper .work-panel table tr td:first-of-type {
  font-weight: 600;
}
.shop-details-wrapper .shop-information-wrapper .work-panel table tr td:last-of-type {
  text-align: end;
}
.shop-details-wrapper .shop-information-wrapper .work-panel table tr:last-of-type td {
  border-bottom: none;
}
.shop-details-wrapper .shop-information-wrapper .shop-contact-wrapper {
  width: 100%;
  margin-top: 40px;
  padding: 30px;
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .shop-details-wrapper .shop-information-wrapper .shop-contact-wrapper {
    padding: 20px;
  }
}
.shop-details-wrapper .shop-information-wrapper .shop-contact-wrapper h3 {
  font-size: 24px;
  color: var(--dark);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .shop-details-wrapper .shop-information-wrapper .shop-contact-wrapper h3 {
    font-size: 20px;
  }
}
.shop-details-wrapper .shop-information-wrapper .shop-contact-wrapper a {
  display: block;
  margin-top: 30px;
  font-size: 24px;
  font-family: var(--font-system);
  color: var(--dark);
  padding-left: 50px;
  line-height: 36px;
}
@media screen and (max-width: 767px) {
  .shop-details-wrapper .shop-information-wrapper .shop-contact-wrapper a {
    font-size: 18px;
  }
}
.shop-details-wrapper .shop-information-wrapper .shop-contact-wrapper a:first-of-type {
  background-image: url("../images/mail-orange.svg");
  background-repeat: no-repeat;
  background-position: 0;
}
.shop-details-wrapper .shop-information-wrapper .shop-contact-wrapper a:last-of-type {
  background-image: url("../images/phone-orange.svg");
  background-repeat: no-repeat;
  background-position: 0;
}

.filter-blog {
  margin-top: 0;
}

.blog-details-text p {
  margin-bottom: 20px;
}
.blog-details-text h2 {
  margin-bottom: 20px;
}
.blog-details-text h3 {
  margin-bottom: 15px;
}
.blog-details-text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 20px 0;
}
.blog-details-text ul li {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 10px;
}
.blog-details-text ul li::marker {
  color: var(--gold);
}
.blog-details-text .blog-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.blog-details-text .blog-gallery a {
  width: 100%;
  height: 420px;
  position: relative;
  display: block;
}
@media screen and (max-width: 767px) {
  .blog-details-text .blog-gallery a {
    height: 200px;
  }
}
.blog-details-text .blog-gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog-details-text .blog-gallery a .more-images {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 32px;
  font-family: var(--font-system);
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .blog-details-text .blog-gallery a .more-images {
    font-size: 20px;
  }
  .blog-details-text .blog-gallery a .more-images svg {
    height: 25px;
  }
}
.blog-details-text .share-cont {
  padding-top: 40px;
  display: flex;
  align-items: center;
}
.blog-details-text .share-cont p {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-system);
  text-transform: uppercase;
  margin-bottom: 0;
}
.blog-details-text .share-cont a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26,26,26,0.15);
  margin-left: 15px;
  transition: all var(--transition);
}
.blog-details-text .share-cont a:hover {
  background: var(--gold-gradient);
  border-color: transparent;
}

@media screen and (max-width: 767px) {
  .main-title.blog-title {
    top: 60%;
  }
}
.main-title.blog-title h1 {
  font-size: 45px;
}
@media screen and (max-width: 575px) {
  .main-title.blog-title h1 {
    font-size: 30px;
    line-height: 37px;
  }
}
.main-title.blog-title span {
  font-family: var(--font-system);
  font-size: 16px;
}

.privacy-text h2 {
  margin-bottom: 20px;
}
.privacy-text h3 {
  margin-bottom: 15px;
}
.privacy-text h4 {
  margin-bottom: 10px;
}
.privacy-text p {
  margin-bottom: 10px;
}
.privacy-text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 20px 0;
}
.privacy-text ul li {
  margin-bottom: 10px;
  font-size: 16px;
}
.privacy-text ul li::marker {
  color: var(--gold);
}


.contact-info-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 40px;
}

.contact-info-section {
    position: relative;
}

.contact-info-section::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -5%;
    width: 38%;
    border: 1px solid rgba(200,150,62,0.2);
    height: 90%;
    z-index: -1;
    border-radius: var(--radius-sm);
}

.contact-info-section::after {
    content: "";
    position: absolute;
    top: 15%;
    right: -10%;
    width: 38%;
    border: 1px solid rgba(200,150,62,0.15);
    height: 90%;
    z-index: -1;
    border-radius: var(--radius-sm);
}

.contact-info-wrapper .contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 33%;
}

.contact-info-wrapper .contact-info-item:nth-of-type(2) {
    border-left: 1px solid rgba(34, 34, 34, 0.2);
    border-right: 1px solid rgba(34, 34, 34, 0.2);
}

.contact-info-wrapper .contact-info-item .img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition);
    box-shadow: 0 8px 30px rgba(200,150,62,0.25);
}

.contact-info-wrapper .contact-info-item p {
    font-weight: 700;
    font-size: 28px;
    font-family: var(--font-system);
    color: var(--dark);
}

.contact-info-wrapper .contact-info-item a {
    font-weight: bold;
    margin-top: 15px;
}

.contact-info-wrapper .contact-info-item a + a {
    margin-top: 10px;
}

.contact-info-wrapper .img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(200,150,62,0.35);
}

.contact-form-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-form-wrapper form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 80%;
    margin-top: 30px;
}

.contact-form-section {
    position: relative;
}

.contact-form-section::before {
    content: "";
    position: absolute;
    top: 61%;
    transform: translateY(-50%);
    left: -5%;
    width: 35%;
    border: 1px solid rgba(200,150,62,0.15);
    height: 65%;
    z-index: 0;
    border-radius: var(--radius-sm);
}

.contact-form-section::after {
    content: "";
    position: absolute;
    top: 36%;
    left: -10%;
    width: 35%;
    border: 1px solid rgba(200,150,62,0.12);
    height: 65%;
    z-index: 0;
    border-radius: var(--radius-sm);
}

.contact-form-wrapper form label {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
}

.contact-form-wrapper form input {
    width: 100%;
    padding: 16px 18px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-sm);
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form-wrapper form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,150,62,0.1);
}

.contact-form-wrapper form label:has(textarea) {
    grid-column: span 2;
    width: 100%;
}

.contact-form-wrapper form textarea {
    width: 100%;
    padding: 16px 18px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-sm);
    margin-top: 10px;
    height: 200px;
    resize: none;
    font-size: 15px;
    font-weight: 500;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form-wrapper form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,150,62,0.1);
}

.contact-form-wrapper form input:focus,
.contact-form-wrapper form textarea:focus {
    outline: none;
}

.contact-form-wrapper form button {
    grid-column: span 2;
    margin-left: auto;
    background: var(--gold-gradient-h);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-system);
    padding: 16px 35px;
    width: 100%;
    max-width: 290px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    background-image: url("../images/more-arr-w.svg");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 82%;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(200,150,62,0.3);
}
.contact-form-wrapper form button:hover {
    box-shadow: 0 6px 25px rgba(200,150,62,0.45);
    transform: translateY(-2px);
}

.contact-form-wrapper form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.contact-form-wrapper form span#emailMsg {
    position: absolute;
    top: 50%;
    left: 41%;
    text-transform: none;
    font-size: 14px;
    color: var(--gold);
    font-family: var(--font-system);
    padding-left: 0;
}

.contact-form-wrapper form span#emailMsg::before {
    display: none;
}

.contact-form-wrapper .contact-socials {
    width: 10%;
}

.contact-form-wrapper .contact-socials .socials {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-left: 1px solid rgba(34, 34, 34, 0.2);
}

.contact-form-wrapper .contact-socials .socials a {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 1px solid rgba(26,26,26,0.15);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-form-wrapper .contact-socials .socials a + a {
    margin-top: 20px;
}

.contact-form-wrapper .contact-socials .socials a:hover {
    background: var(--gold-gradient);
    border: 1px solid transparent;
    transform: translateY(-3px);
}

.map {
    width: 100%;
    height: 725px;
    position: relative;
    z-index: 1;
}

.map iframe {
    width: 100%;
    height: 100%;
}

.success-message-cont .btn{
max-width: 280px;
}

.about-video{
  margin-bottom: 0;
}

.background .mainSwiper{
  height: 100%;
}

.background .swiper-slide {
  overflow: hidden;
}

/*
 * Ken Burns zoom efekat: slika aktivnog slajda se polako zumira 1 → 1.08
 * tokom 8s. Neaktivni slajdovi ostaju na scale(1) pa kad swiper promijeni
 * aktivni slajd, selektor se re-matchuje i animacija kreće ispočetka.
 * `forwards` zadržava 1.08 do kraja (da ne "skoči" nazad prije swipe-a).
 */
@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.background .swiper-slide img {
  transform: scale(1);
  will-change: transform;
}

.background .swiper-slide-active img {
  animation: kenBurns 8s ease-out forwards;
}

.background .main-pagination {
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: end;
    width: -moz-fit-content;
    width: fit-content;
    top: unset;
    left: unset;
    right: 0;
    bottom: 50px;
}

.background .main-pagination .swiper-pagination-bullet {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-system);
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.background .main-pagination .swiper-pagination-bullet:hover {
    color: rgba(255, 255, 255, 0.9);
}

.background .main-pagination .swiper-pagination-bullet::after {
    content: "";
    width: 50px;
    height: 1px;
    background-color: #fff;
    margin-left: 10px;
    transition: all 0.5s;
}

.background .main-pagination .swiper-pagination-bullet::before{
  display: none;
}

.background .main-pagination .swiper-pagination-bullet-active::after{
  width: 88px;
  height: 2px;
  background: var(--gold-gradient-h);
  box-shadow: 0 0 15px rgba(200, 150, 62, 0.6);
}

.background .main-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px rgba(200, 150, 62, 0.5);
}

.shop-text .title span p{
  color: var(--gold);
}

footer .copyrights .max-width{
  display: flex;
  align-items: center;
  justify-content: space-between;

}

footer .copyrights ul{
  display: flex;
  align-items: center;
  font-family: var(--font-system);
}

footer .copyrights ul li a{
  font-family: var(--font-system);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

footer .copyrights ul li{
  margin-right: 5px;
}

footer .copyrights ul li + li{
  margin-right: 0;
  margin-left: 5px;
}

.hotel-section .hotel-wrapper .center-title span::before{
  height: 200px;
  top: -625%;
  z-index: 2;
}

.mobile-socials{
  display: none;
}

.grey-background2{
  background-color: #F3F3F3;
}

@media only screen and (max-width: 1605px) {
    .contact-info-section::before {
        width: 35%;
    }

    .contact-info-section::after {
        width: 35%;
    }
}

@media only screen and (max-width: 1200px) {
  .mobile-socials{
    display: block;
  }

  .mobile-socials .socials{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
}

@media only screen and (max-width: 991px) {
    .contact-info-section::before {
        display: none;
    }

    .contact-info-section::after {
        display: none;
    }

    .contact-form-section::before {
        display: none;
    }

    .contact-form-section::after {
        display: none;
    }

    .contact-info-wrapper .contact-info-item .img {
        width: 50px;
        height: 50px;
    }

    .contact-info-wrapper .contact-info-item .img svg {
        width: 20px;
        height: 20px;
    }

    .contact-info-wrapper .contact-info-item p {
        font-size: 20px;
    }

    .contact-info-wrapper .contact-info-item a {
        font-size: 10px;
        letter-spacing: 0px;
        text-align: center;
    }

    .contact-form-wrapper {
        flex-direction: column;
    }

    .contact-form-wrapper form {
        width: 100%;
    }

    .contact-form-wrapper .contact-socials {
        width: 100%;
        margin-top: 30px;
    }

    .contact-form-wrapper .contact-socials .socials {
        flex-direction: row;
        justify-content: space-between;
        border-left: none;
    }

    .map {
        height: 500px;
    }

    footer .copyrights .max-width{
      flex-direction: column-reverse;
    }

    footer .copyrights .max-width ul{
      margin-bottom: 10px;
    }

    .hotel-section .hotel-wrapper .center-title span::before {
    height: 50px;
    top: -190%;
    }
}

@media only screen and (max-width: 767px) {

  .hotel-section .hotel-wrapper .center-title span::before {
        height: 20px;
        top: -43%;
  }

  .shop-details-wrapper .shop-information-wrapper .work-buttons button{
    padding: 10px;
    font-size: 14px;
  }

  .shop-details-wrapper .shop-information-wrapper .work-panel table tr td{
    padding: 10px 0;
  }

  .small-background .main-title:has(.shop-image){
    top: 56%;
  }
}

@media only screen and (max-width: 576px) {
    .contact-form-wrapper form {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper form label:has(textarea) {
        grid-column: span 1;
    }

    .contact-form-wrapper form button {
        grid-column: span 1;
    }

    .contact-form-wrapper .contact-socials .socials a {
        width: 55px;
        height: 55px;
    }

    .map {
        height: 350px;
    }

    .background .main-pagination {
      display: none;
    }

.blog-date{
  margin-top: 10px;
  margin-bottom: 5px;
}
.no-padding{
  padding-top: 0;
}

footer .copyrights p{
  font-size: 11px;
  line-height: 15px
}
}

.heritage-section {
  position: relative;
  background: linear-gradient(180deg, #f8f7f5 0%, #f0ede8 100%);
  overflow: hidden;
}

.heritage-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(200, 150, 62, 0.2) 20%,
    rgba(200, 150, 62, 0.4) 50%,
    rgba(200, 150, 62, 0.2) 80%,
    transparent 100%);
  box-shadow: 0 1px 3px rgba(200, 150, 62, 0.1);
  z-index: 1;
}

.heritage-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(200, 150, 62, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(200, 150, 62, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.heritage-section .max-width {
  position: relative;
  z-index: 2;
}

.heritage-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 40px;
}

@media screen and (max-width: 1199px) {
  .heritage-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  .heritage-container {
    gap: 30px;
  }
}

.heritage-image-wrapper {
  position: relative;
}

.heritage-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.heritage-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.heritage-image:hover::before {
  opacity: 0;
}

.heritage-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.heritage-image:hover img {
  transform: scale(1.08);
}

.heritage-image:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.heritage-image:hover .image-overlay {
  opacity: 1;
}

.image-overlay svg {
  color: white;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.heritage-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .heritage-content {
    gap: 20px;
  }
}

.heritage-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.heritage-year {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

@media screen and (max-width: 767px) {
  .heritage-year {
    font-size: 24px;
  }
}

.heritage-heading {
  font-family: var(--font-system);
  font-size: 42px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.5px;
}

@media screen and (max-width: 1199px) {
  .heritage-heading {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .heritage-heading {
    font-size: 28px;
  }
}

.heritage-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Premium About Section - O nama */
.premium-about-section {
  background: 
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #0a0a0a 100%) !important;
  position: relative;
  overflow: hidden;
  padding-bottom: 50px !important;
  border-top: 1px solid rgba(200, 150, 62, 0.1);
  border-bottom: 1px solid rgba(200, 150, 62, 0.1);
}

.premium-about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(200, 150, 62, 0.4) 15%,
    rgba(200, 150, 62, 1) 50%,
    rgba(200, 150, 62, 0.4) 85%,
    transparent 100%);
  box-shadow: 
    0 2px 20px rgba(200, 150, 62, 0.8),
    0 4px 40px rgba(200, 150, 62, 0.4);
  z-index: 2;
}

.premium-about-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px),
    radial-gradient(circle at 20% 30%, rgba(200, 150, 62, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(200, 150, 62, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(200, 150, 62, 0.05) 0%, transparent 50%);
  pointer-events: none;
  animation: shimmer 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.premium-about-section .section-header-simple {
  display: none;
}

.premium-about-section .section-icon-small {
  background: rgba(200, 150, 62, 0.15);
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(200, 150, 62, 0.4);
}

.premium-about-section .section-title-simple {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(200, 150, 62, 0.5);
}

.premium-about-section .premium-about-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px !important;
  align-items: center !important;
  position: relative;
  z-index: 2;
  background: transparent !important;
}

.about-image-column {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.about-image-card {
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.6),
    0 0 0 2px rgba(200, 150, 62, 0.3),
    0 0 40px rgba(200, 150, 62, 0.4),
    inset 0 0 60px rgba(200, 150, 62, 0.05);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-in;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.1) 0%, transparent 100%);
}

.about-image-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, 
    rgba(200, 150, 62, 0.6) 0%, 
    rgba(200, 150, 62, 0.3) 50%,
    transparent 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
  filter: blur(10px);
}

.about-image-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 150, 62, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}

.about-image-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.8),
    0 0 0 3px rgba(200, 150, 62, 0.6),
    0 0 60px rgba(200, 150, 62, 0.8),
    0 0 120px rgba(200, 150, 62, 0.4),
    inset 0 0 80px rgba(200, 150, 62, 0.1);
}

.about-image-card:hover::before {
  opacity: 1;
}

.about-image-card:hover::after {
  opacity: 0.5;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-card:hover .about-image-wrapper img {
  transform: scale(1.08);
}

.image-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}

.zoom-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.about-image-card:hover .zoom-indicator {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.zoom-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(200, 150, 62, 0.3),
    0 0 40px rgba(200, 150, 62, 0.6),
    inset 0 0 20px rgba(200, 150, 62, 0.1);
  animation: pulseZoom 2.5s ease-in-out infinite;
  position: relative;
}

.zoom-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.4) 0%, transparent 100%);
  filter: blur(8px);
  opacity: 0.6;
  animation: rotate-glow 4s linear infinite;
}

@keyframes rotate-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseZoom {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 10px 30px rgba(0, 0, 0, 0.4),
      0 0 0 2px rgba(200, 150, 62, 0.3),
      0 0 40px rgba(200, 150, 62, 0.6),
      inset 0 0 20px rgba(200, 150, 62, 0.1);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 
      0 15px 40px rgba(0, 0, 0, 0.5),
      0 0 0 3px rgba(200, 150, 62, 0.5),
      0 0 60px rgba(200, 150, 62, 0.9),
      0 0 90px rgba(200, 150, 62, 0.5),
      inset 0 0 30px rgba(200, 150, 62, 0.2);
  }
}

.zoom-icon svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(200, 150, 62, 0.3));
}

.zoom-indicator span {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(200, 150, 62, 0.6);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  padding: 6px 14px;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 150, 62, 0.3);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(200, 150, 62, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-content-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-label {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-shadow: 
    0 0 20px rgba(200, 150, 62, 0.8),
    0 0 40px rgba(200, 150, 62, 0.4);
  animation: glow-text 3s ease-in-out infinite;
}

@keyframes glow-text {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(200, 150, 62, 0.8),
      0 0 40px rgba(200, 150, 62, 0.4);
  }
  50% {
    text-shadow: 
      0 0 30px rgba(200, 150, 62, 1),
      0 0 60px rgba(200, 150, 62, 0.6),
      0 0 90px rgba(200, 150, 62, 0.3);
  }
}

.about-label::before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 3px;
  background: var(--gold-gradient-h);
  position: relative;
  flex-shrink: 0;
  box-shadow: 
    0 0 15px rgba(200, 150, 62, 0.8),
    0 0 30px rgba(200, 150, 62, 0.4);
  animation: line-glow 3s ease-in-out infinite;
}

@keyframes line-glow {
  0%, 100% {
    box-shadow: 
      0 0 15px rgba(200, 150, 62, 0.8),
      0 0 30px rgba(200, 150, 62, 0.4);
  }
  50% {
    box-shadow: 
      0 0 25px rgba(200, 150, 62, 1),
      0 0 50px rgba(200, 150, 62, 0.6);
  }
}

.about-title {
  font-family: var(--font-system);
  font-size: 42px;
  font-weight: bold;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(200, 150, 62, 0.3);
}

.about-text {
  /* Čitljivost: solid bijela umjesto 85% alpha, fontu se daje težina 400,
     blago povećan size, letter-spacing za disanje slova i jači shadow za
     kontrast na tamnoj gradijent pozadini. Tekst je po svom karakteru (lirski,
     posveta pjesnika) ne treba da bude pop-out nego suptilan — ali čitljiv.
     Dodaje se i lagana pozadinska kartica (glass panel) da ograniči širinu
     i daje tipografiji vizuelni okvir. */
  font-family: var(--font-system);
  font-size: 18px;
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #f2ede3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
  padding: 28px 32px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(200, 150, 62, 0.05) 100%);
  border-left: 2px solid rgba(200, 150, 62, 0.45);
  border-radius: 0 12px 12px 0;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.about-text p {
  /* Globalno `p { color: var(--text-secondary) }` (#555 siva) presijeda
     inheritance sa `.about-text` wrappera. Eksplicitno postavljamo boju
     paragrafa ovdje sa većom specifikom (0,1,1 > 0,0,1). */
  margin-bottom: 20px;
  color: #f2ede3;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.about-text strong {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(200, 150, 62, 0.5);
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text em,
.about-text i {
  font-style: italic;
  color: rgba(240, 240, 240, 0.95);
  font-size: 17px;
  line-height: 1.8;
  display: block;
  padding: 25px 30px;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.08) 0%, rgba(200, 150, 62, 0.03) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
  position: relative;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(200, 150, 62, 0.15);
  backdrop-filter: blur(10px);
}

.about-text em::before,
.about-text i::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.about-text em::after,
.about-text i::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  box-shadow: 0 0 15px rgba(200, 150, 62, 0.4);
}

.about-text blockquote {
  font-style: italic;
  color: rgba(240, 240, 240, 0.95);
  font-size: 17px;
  line-height: 1.8;
  display: block;
  padding: 25px 30px;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.08) 0%, rgba(200, 150, 62, 0.03) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
  position: relative;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(200, 150, 62, 0.15);
  backdrop-filter: blur(10px);
}

.about-text blockquote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.about-text blockquote::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  box-shadow: 0 0 15px rgba(200, 150, 62, 0.4);
}

/* Responsive */
@media screen and (max-width: 1199px) {
  .premium-about-section .premium-about-container {
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
  }
  
  .about-title {
    font-size: 38px;
  }
  
  .about-label {
    font-size: 24px;
  }
}

@media screen and (max-width: 991px) {
  .premium-about-section .premium-about-container {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
  }
  
  .about-image-column {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-text em,
  .about-text i,
  .about-text blockquote {
    padding: 20px 25px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .premium-about-section .premium-about-container {
    margin-top: 40px;
    gap: 40px;
  }
  
  .about-label {
    font-size: 22px;
  }
  
  .about-title {
    font-size: 30px;
  }
  
  .about-text {
    font-size: 16px;
    padding: 22px 24px;
    line-height: 1.8;
  }
  
  .zoom-indicator span {
    font-size: 10px;
  }
  
  .zoom-icon {
    width: 48px;
    height: 48px;
  }
}

.heritage-text p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
}

.heritage-text p:last-child {
  margin-bottom: 0;
}

.heritage-text p:first-of-type {
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
}

@media screen and (max-width: 767px) {
  .heritage-text {
    font-size: 16px;
  }
  
  .heritage-text p {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .heritage-text p:first-of-type {
    font-size: 17px;
  }
}

/* Heritage Story Section - Light Version */
.heritage-story-section-light {
  position: relative;
  background: linear-gradient(180deg, #FAF9F6 0%, #F5F3EF 50%, #FAF9F6 100%);
  padding: 100px 0;
  overflow: hidden;
}

.heritage-bg-pattern-light {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(200, 150, 62, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(200, 150, 62, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(200, 150, 62, 0.01) 2px, rgba(200, 150, 62, 0.01) 4px);
  pointer-events: none;
  z-index: 0;
}

.heritage-header-light {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.heritage-label-light {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(200, 150, 62, 0.3);
  animation: labelGlowLight 3s ease-in-out infinite;
}

.heritage-label-light::before,
.heritage-label-light::after {
  content: '';
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 8px rgba(200, 150, 62, 0.4);
}

@keyframes labelGlowLight {
  0%, 100% {
    text-shadow: 0 0 20px rgba(200, 150, 62, 0.3);
  }
  50% {
    text-shadow: 0 0 35px rgba(200, 150, 62, 0.6), 0 0 60px rgba(200, 150, 62, 0.2);
  }
}

.heritage-title-light {
  font-family: var(--font-system);
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.heritage-timeline-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.heritage-card-light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 249, 246, 0.9) 100%);
  border: 1px solid rgba(200, 150, 62, 0.15);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.heritage-card-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 150, 62, 0.08), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.heritage-card-light:hover::before {
  left: 100%;
}

.heritage-card-light::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient-h);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.heritage-card-light:hover {
  border-color: rgba(200, 150, 62, 0.4);
  transform: translateY(-10px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 40px rgba(200, 150, 62, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.heritage-card-light:hover::after {
  opacity: 1;
}

.heritage-icon-light {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.1), rgba(200, 150, 62, 0.03));
  border: 1px solid rgba(200, 150, 62, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  position: relative;
}

.heritage-icon-light::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(200, 150, 62, 0.25) 90deg,
    transparent 180deg,
    rgba(200, 150, 62, 0.25) 270deg,
    transparent 360deg
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotate 3s linear infinite;
  animation-play-state: paused;
}

.heritage-card-light:hover .heritage-icon-light::before {
  opacity: 1;
  animation-play-state: running;
}

.heritage-card-light:hover .heritage-icon-light {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.2), rgba(200, 150, 62, 0.08));
  box-shadow: 0 0 25px rgba(200, 150, 62, 0.25);
}

.heritage-icon-light svg {
  stroke: var(--gold);
  filter: drop-shadow(0 0 6px rgba(200, 150, 62, 0.3));
  transition: all 0.4s ease;
}

.heritage-card-light:hover .heritage-icon-light svg {
  stroke: var(--gold-light);
  filter: drop-shadow(0 0 12px rgba(200, 150, 62, 0.6));
}

.heritage-content-light {
  flex: 1;
}

.heritage-card-title-light {
  font-family: var(--font-system);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.heritage-card-light:hover .heritage-card-title-light {
  color: var(--gold);
}

.heritage-year-light {
  font-family: var(--font-system);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  display: inline-block;
  padding: 6px 14px;
  background: rgba(200, 150, 62, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(200, 150, 62, 0.15);
}

.heritage-text-light {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

.heritage-text-light strong {
  color: var(--dark);
  font-weight: 600;
}

.heritage-number-light {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: var(--font-system);
  font-size: 72px;
  font-weight: 900;
  color: rgba(200, 150, 62, 0.05);
  line-height: 1;
  transition: all 0.4s ease;
  pointer-events: none;
}

.heritage-card-light:hover .heritage-number-light {
  color: rgba(200, 150, 62, 0.12);
  transform: scale(1.1);
}

@media screen and (max-width: 1199px) {
  .heritage-timeline-light {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .heritage-title-light {
    font-size: 42px;
  }
}

@media screen and (max-width: 991px) {
  .heritage-story-section-light {
    padding: 70px 0;
  }
  
  .heritage-header-light {
    margin-bottom: 50px;
  }
  
  .heritage-title-light {
    font-size: 36px;
  }
  
  .heritage-label-light {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .heritage-story-section-light {
    padding: 50px 0;
  }
  
  .heritage-title-light {
    font-size: 28px;
  }
  
  .heritage-label-light {
    font-size: 20px;
  }
  
  .heritage-label-light::before,
  .heritage-label-light::after {
    width: 30px;
  }
  
  .heritage-card-light {
    padding: 30px 25px;
  }
  
  .heritage-card-title-light {
    font-size: 20px;
  }
  
  .heritage-icon-light {
    width: 60px;
    height: 60px;
  }
  
  .heritage-icon-light svg {
    width: 36px;
    height: 36px;
  }
  
  .heritage-number-light {
    font-size: 48px;
    top: 20px;
    right: 20px;
  }
}

/* Premium About Section - About Page */
.premium-about-section-page {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%) !important;
  position: relative;
  overflow: hidden;
  padding: 70px 0 70px 0 !important;
}

@media screen and (max-width: 991px) {
  .premium-about-section-page {
    padding: 50px 0 50px 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .premium-about-section-page {
    padding: 40px 0 40px 0 !important;
  }
}

.premium-about-section-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(200, 150, 62, 0.3) 20%,
    rgba(200, 150, 62, 0.8) 50%,
    rgba(200, 150, 62, 0.3) 80%,
    transparent 100%);
  box-shadow: 0 2px 20px rgba(200, 150, 62, 0.6);
  z-index: 2;
}

.premium-about-section-page::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(200, 150, 62, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(200, 150, 62, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(200, 150, 62, 0.03) 0%, transparent 60%);
  pointer-events: none;
  animation: shimmer-page 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes shimmer-page {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.premium-about-container-page {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-image-column-page {
  position: relative;
  max-width: 280px;
  margin: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-card-page {
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.6),
    0 0 0 2px rgba(200, 150, 62, 0.3),
    0 0 40px rgba(200, 150, 62, 0.4),
    inset 0 0 60px rgba(200, 150, 62, 0.05);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-in;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.1) 0%, transparent 100%);
}

.about-image-card-page::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, 
    rgba(200, 150, 62, 0.6) 0%, 
    rgba(200, 150, 62, 0.3) 50%,
    transparent 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
  filter: blur(10px);
}

.about-image-card-page::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 150, 62, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
  animation: pulse-glow-page 3s ease-in-out infinite;
}

@keyframes pulse-glow-page {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}

.about-image-card-page:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.8),
    0 0 0 3px rgba(200, 150, 62, 0.6),
    0 0 60px rgba(200, 150, 62, 0.8),
    0 0 120px rgba(200, 150, 62, 0.4),
    inset 0 0 80px rgba(200, 150, 62, 0.1);
}

.about-image-card-page:hover::before {
  opacity: 1;
}

.about-image-card-page:hover::after {
  opacity: 0.5;
}

.about-image-wrapper-page {
  position: relative;
  overflow: hidden;
}

.about-image-wrapper-page img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-card-page:hover .about-image-wrapper-page img {
  transform: scale(1.08);
}

.about-content-column-page {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-header-page {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-label-page {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-shadow: 
    0 0 20px rgba(200, 150, 62, 0.8),
    0 0 40px rgba(200, 150, 62, 0.4);
  animation: glow-text-page 3s ease-in-out infinite;
}

@keyframes glow-text-page {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(200, 150, 62, 0.8),
      0 0 40px rgba(200, 150, 62, 0.4);
  }
  50% {
    text-shadow: 
      0 0 30px rgba(200, 150, 62, 1),
      0 0 60px rgba(200, 150, 62, 0.6),
      0 0 90px rgba(200, 150, 62, 0.3);
  }
}

.about-label-page::before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, rgba(200, 150, 62, 1) 0%, rgba(200, 150, 62, 0.5) 100%);
  position: relative;
  flex-shrink: 0;
  box-shadow: 
    0 0 15px rgba(200, 150, 62, 0.8),
    0 0 30px rgba(200, 150, 62, 0.4);
  animation: line-glow-page 3s ease-in-out infinite;
}

@keyframes line-glow-page {
  0%, 100% {
    box-shadow: 
      0 0 15px rgba(200, 150, 62, 0.8),
      0 0 30px rgba(200, 150, 62, 0.4);
  }
  50% {
    box-shadow: 
      0 0 25px rgba(200, 150, 62, 1),
      0 0 50px rgba(200, 150, 62, 0.6);
  }
}

.about-title-page {
  font-family: var(--font-system);
  font-size: 42px;
  font-weight: bold;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(200, 150, 62, 0.3);
}

.about-text-page {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.about-text-page p {
  margin-bottom: 20px;
}

.about-text-page p:last-child {
  margin-bottom: 0;
}

.about-text-page em,
.about-text-page i {
  font-style: italic;
  color: rgba(240, 240, 240, 0.95);
  font-size: 17px;
  line-height: 1.8;
  display: block;
  padding: 25px 30px;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.08) 0%, rgba(200, 150, 62, 0.03) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
  position: relative;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(200, 150, 62, 0.15);
  backdrop-filter: blur(10px);
}

.about-text-page em::before,
.about-text-page i::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.about-text-page em::after,
.about-text-page i::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  box-shadow: 0 0 15px rgba(200, 150, 62, 0.4);
}

.about-text-page strong {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(200, 150, 62, 0.4);
}

@media screen and (max-width: 1199px) {
  .premium-about-container-page {
    grid-template-columns: 280px 1fr;
    gap: 60px;
  }
  
  .about-title-page {
    font-size: 38px;
  }
  
  .about-label-page {
    font-size: 24px;
  }
}

@media screen and (max-width: 991px) {
  .premium-about-container-page {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-image-column-page {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .about-text-page em,
  .about-text-page i {
    padding: 20px 25px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .premium-about-container-page {
    gap: 40px;
  }
  
  .about-label-page {
    font-size: 22px;
  }
  
  .about-title-page {
    font-size: 30px;
  }
  
  .about-text-page {
    font-size: 15px;
  }
}

/* Granite Journey Section - Completely Redesigned */
.granite-journey-section {
  background: linear-gradient(135deg, #FAF9F6 0%, #F5F3EF 50%, #FAF9F6 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.granite-journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(200, 150, 62, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(200, 150, 62, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.granite-journey-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}

.journey-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.08) 0%, rgba(200, 150, 62, 0.12) 100%);
  border-radius: 50px;
  border: 2px solid rgba(200, 150, 62, 0.3);
  box-shadow: 
    0 4px 20px rgba(200, 150, 62, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.journey-label .globe-icon {
  color: var(--gold);
  animation: rotate-globe 20s linear infinite;
}

@keyframes rotate-globe {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.journey-label span {
  font-family: var(--font-system);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.journey-label span::before {
  display: none;
}

.journey-title {
  font-family: var(--font-system);
  font-size: 52px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.journey-intro {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.continents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.continent-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.continent-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(20px);
  z-index: 0;
}

.continent-card:hover::before {
  opacity: 0.4;
}

.continent-card:hover {
  transform: translateY(-12px);
}

.continent-card-inner {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  border-radius: 24px;
  padding: 50px 35px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(200, 150, 62, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 1;
}

.continent-card:hover .continent-card-inner {
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 2px rgba(200, 150, 62, 0.3),
    0 0 40px rgba(200, 150, 62, 0.2);
}

.continent-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(200, 150, 62, 0.03) 10px, rgba(200, 150, 62, 0.03) 20px);
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.continent-card:hover .continent-pattern {
  opacity: 1;
}

.continent-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.1) 0%, rgba(200, 150, 62, 0.05) 100%);
  border-radius: 50%;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 
    0 4px 20px rgba(200, 150, 62, 0.15),
    inset 0 2px 10px rgba(255, 255, 255, 0.5);
}

.continent-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(10px);
}

.continent-card:hover .continent-icon {
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 
    0 8px 30px rgba(200, 150, 62, 0.3),
    inset 0 2px 10px rgba(255, 255, 255, 0.7);
}

.continent-card:hover .continent-icon::before {
  opacity: 1;
}

.continent-icon svg {
  color: var(--gold);
  transition: all 0.4s ease;
}

.continent-card:hover .continent-icon svg {
  color: var(--gold-light);
  filter: drop-shadow(0 0 10px rgba(200, 150, 62, 0.6));
}

.continent-name {
  font-family: var(--font-system);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  text-align: center;
  transition: color 0.4s ease;
}

.continent-card:hover .continent-name {
  color: var(--gold);
}

.continent-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  margin: 0;
}

.quality-philosophy {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 50px;
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  border-radius: 30px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(200, 150, 62, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.quality-philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--gold) 50%,
    transparent 100%);
  box-shadow: 0 2px 20px rgba(200, 150, 62, 0.4);
}

.philosophy-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.12) 0%, rgba(200, 150, 62, 0.06) 100%);
  border-radius: 50%;
  box-shadow: 
    0 8px 30px rgba(200, 150, 62, 0.2),
    inset 0 2px 10px rgba(255, 255, 255, 0.6);
  animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 
      0 8px 30px rgba(200, 150, 62, 0.2),
      inset 0 2px 10px rgba(255, 255, 255, 0.6);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 
      0 12px 40px rgba(200, 150, 62, 0.35),
      inset 0 2px 10px rgba(255, 255, 255, 0.7);
  }
}

.philosophy-icon svg {
  color: var(--gold);
  filter: drop-shadow(0 2px 10px rgba(200, 150, 62, 0.3));
}

.philosophy-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.philosophy-quote p {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--dark);
  font-style: italic;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Craftsmanship Section - Elegant Signature Style */
.craftsmanship-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.craftsmanship-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 30%, rgba(200, 150, 62, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(200, 150, 62, 0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: shimmer 10s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.craftsmanship-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.craftsmanship-icon-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
  filter: blur(30px);
}

@keyframes glow-pulse {
  0%, 100% { 
    transform: scale(0.8);
    opacity: 0.4;
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.craftsmanship-icon {
  color: var(--gold);
  filter: drop-shadow(0 0 20px rgba(200, 150, 62, 0.8));
  position: relative;
  z-index: 1;
  animation: icon-float 4s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(2deg); }
  50% { transform: translateY(0px) rotate(0deg); }
  75% { transform: translateY(-8px) rotate(-2deg); }
}

.craftsmanship-title {
  font-family: var(--font-system);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 60px;
  letter-spacing: -0.3px;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(200, 150, 62, 0.2);
}

.craftsmanship-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

.signature-line {
  flex: 1;
  max-width: 200px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(200, 150, 62, 0.8) 50%, 
    transparent 100%);
  box-shadow: 0 0 10px rgba(200, 150, 62, 0.4);
  position: relative;
}

.signature-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 
    0 0 15px rgba(200, 150, 62, 0.8),
    0 0 30px rgba(200, 150, 62, 0.4);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
  }
}

.signature-text {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 
    0 0 20px rgba(200, 150, 62, 0.8),
    0 0 40px rgba(200, 150, 62, 0.4);
  white-space: nowrap;
  animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(200, 150, 62, 0.8),
      0 0 40px rgba(200, 150, 62, 0.4);
  }
  50% {
    text-shadow: 
      0 0 30px rgba(200, 150, 62, 1),
      0 0 60px rgba(200, 150, 62, 0.6),
      0 0 90px rgba(200, 150, 62, 0.3);
  }
}

/* Responsive Styles */
@media screen and (max-width: 1199px) {
  .granite-journey-section {
    padding: 100px 0;
  }
  
  .journey-title {
    font-size: 46px;
  }
  
  .journey-intro {
    font-size: 18px;
  }
  
  .continents-grid {
    gap: 30px;
  }
  
  .craftsmanship-section {
    padding: 100px 0;
  }
  
  .craftsmanship-title {
    font-size: 34px;
  }
}

@media screen and (max-width: 991px) {
  .granite-journey-section {
    padding: 80px 0;
  }
  
  .granite-journey-header {
    margin-bottom: 60px;
  }
  
  .journey-title {
    font-size: 40px;
  }
  
  .journey-intro {
    font-size: 17px;
  }
  
  .continents-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto 60px;
  }
  
  .continent-card-inner {
    padding: 40px 30px;
  }
  
  .quality-philosophy {
    padding: 50px 40px;
  }
  
  .craftsmanship-section {
    padding: 80px 0;
  }
  
  .craftsmanship-title {
    font-size: 28px;
  }
  
  .signature-text {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .granite-journey-section {
    padding: 60px 0;
  }
  
  .journey-label {
    padding: 10px 20px;
    gap: 8px;
  }
  
  .journey-label span {
    font-size: 13px;
  }
  
  .journey-title {
    font-size: 32px;
  }
  
  .journey-intro {
    font-size: 16px;
  }
  
  .continent-card-inner {
    padding: 35px 25px;
  }
  
  .continent-name {
    font-size: 24px;
  }
  
  .continent-description {
    font-size: 14px;
  }
  
  .quality-philosophy {
    padding: 40px 30px;
    border-radius: 20px;
  }
  
  .philosophy-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }
  
  .philosophy-icon svg {
    width: 48px;
    height: 48px;
  }
  
  .philosophy-quote p {
    font-size: 26px;
  }
  
  .craftsmanship-section {
    padding: 60px 0;
  }
  
  .craftsmanship-icon-wrapper {
    width: 100px;
    height: 100px;
  }
  
  .craftsmanship-icon {
    width: 60px;
    height: 60px;
  }
  
  .craftsmanship-title {
    font-size: 24px;
  }
  
  .craftsmanship-signature {
    flex-direction: column;
    gap: 20px;
  }
  
  .signature-line {
    width: 100%;
    max-width: 150px;
  }
  
  .signature-text {
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  .journey-title {
    font-size: 28px;
  }
  
  .journey-intro {
    font-size: 15px;
  }
  
  .continent-icon {
    width: 70px;
    height: 70px;
  }
  
  .continent-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .continent-name {
    font-size: 22px;
  }
  
  .quality-philosophy {
    padding: 30px 20px;
  }
  
  .philosophy-quote p {
    font-size: 22px;
  }
  
  .craftsmanship-title {
    font-size: 20px;
  }
  
  .signature-text {
    font-size: 20px;
  }
}

/* Premium Story Section - Full Luxury Redesign */
.premium-story-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #0a0a0a 100%) !important;
  padding: 80px 0 70px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 150, 62, 0.15);
  border-bottom: 1px solid rgba(200, 150, 62, 0.15);
  box-shadow: 
    inset 0 1px 0 rgba(200, 150, 62, 0.3),
    inset 0 -1px 0 rgba(200, 150, 62, 0.3);
}

.premium-story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px),
    radial-gradient(circle at 20% 30%, rgba(200, 150, 62, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200, 150, 62, 0.10) 0%, transparent 50%);
  pointer-events: none;
  animation: ambient-shift 15s ease-in-out infinite;
}

@keyframes ambient-shift {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.story-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  animation: glow-breathe 8s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.15;
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.25;
  }
}

.story-glow-left {
  background: radial-gradient(circle, rgba(200, 150, 62, 0.4) 0%, transparent 70%);
  top: 10%;
  left: -10%;
}

.story-glow-right {
  background: radial-gradient(circle, rgba(200, 150, 62, 0.3) 0%, transparent 70%);
  bottom: 10%;
  right: -10%;
  animation-delay: 4s;
}

.story-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}

.story-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.eyebrow-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(200, 150, 62, 0.6) 50%, 
    transparent 100%);
  position: relative;
}

.eyebrow-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(200, 150, 62, 0.6);
  animation: dot-shimmer 2s ease-in-out infinite;
}

@keyframes dot-shimmer {
  0%, 100% { 
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% { 
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.story-eyebrow span {
  font-family: var(--font-system);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 
    0 0 20px rgba(200, 150, 62, 0.8),
    0 0 40px rgba(200, 150, 62, 0.4);
  animation: eyebrow-glow 3s ease-in-out infinite;
}

@keyframes eyebrow-glow {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(200, 150, 62, 0.8),
      0 0 40px rgba(200, 150, 62, 0.4);
  }
  50% {
    text-shadow: 
      0 0 30px rgba(200, 150, 62, 1),
      0 0 60px rgba(200, 150, 62, 0.6),
      0 0 90px rgba(200, 150, 62, 0.3);
  }
}

.eyebrow-label::before {
  display: none !important;
}

.story-title {
  font-family: var(--font-system);
  font-size: 54px;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(200, 150, 62, 0.3);
}

.premium-story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.story-images-gallery {
  position: relative;
  margin-top: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image-wrapper[data-index="0"] {
  display: block;
}

.gallery-image-wrapper[data-index="1"] {
  display: none;
}

@keyframes float-image-1 {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-15px) translateX(5px); }
}

@keyframes float-image-2 {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(15px) translateX(-5px); }
}

.image-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(200, 150, 62, 0.3),
    0 0 40px rgba(200, 150, 62, 0.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image-wrapper:hover .image-inner {
  transform: scale(1.02);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 0 3px rgba(200, 150, 62, 0.6),
    0 0 80px rgba(200, 150, 62, 0.4),
    0 0 120px rgba(200, 150, 62, 0.2);
}

.image-inner img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image-wrapper:hover .image-inner img {
  transform: scale(1.05);
}

.image-shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    transparent 45%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 55%,
    transparent 100%
  );
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.gallery-image-wrapper:hover .image-shine {
  opacity: 1;
  top: 100%;
  left: 100%;
}

.image-frame-border {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(200, 150, 62, 0);
  border-radius: 24px;
  transition: border-color 0.6s ease;
  pointer-events: none;
}

.gallery-image-wrapper:hover .image-frame-border {
  border-color: rgba(200, 150, 62, 0.4);
}

.gallery-accent-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.08) 0%, rgba(200, 150, 62, 0.02) 100%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(60px);
  animation: accent-pulse 4s ease-in-out infinite;
}

@keyframes accent-pulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.7;
  }
}

.story-content {
  position: relative;
  z-index: 2;
}

.content-wrapper {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 60px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(200, 150, 62, 0.3),
    0 0 40px rgba(200, 150, 62, 0.15),
    inset 0 1px 0 rgba(200, 150, 62, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-wrapper:hover {
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.7),
    0 0 0 2px rgba(200, 150, 62, 0.5),
    0 0 60px rgba(200, 150, 62, 0.25),
    0 0 100px rgba(200, 150, 62, 0.1),
    inset 0 1px 0 rgba(200, 150, 62, 0.2);
  transform: translateY(-5px);
}

.content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--gold) 50%,
    transparent 100%);
  box-shadow: 0 2px 15px rgba(200, 150, 62, 0.6), 0 4px 30px rgba(200, 150, 62, 0.3);
  animation: top-line-glow 3s ease-in-out infinite;
}

@keyframes top-line-glow {
  0%, 100% {
    box-shadow: 0 2px 15px rgba(200, 150, 62, 0.6), 0 4px 30px rgba(200, 150, 62, 0.3);
  }
  50% {
    box-shadow: 0 2px 25px rgba(200, 150, 62, 0.9), 0 4px 50px rgba(200, 150, 62, 0.5);
  }
}

.content-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: ambient-pulse 6s ease-in-out infinite;
}

@keyframes ambient-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.story-text {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 40px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.story-text p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.95) !important;
  letter-spacing: 0.3px;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-text strong {
  color: #ffffff !important;
  font-weight: 600;
}

.story-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.premium-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50px;
  color: #ffffff !important;
  font-family: var(--font-system);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 30px rgba(200, 150, 62, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.8);
}

.premium-cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 40px rgba(200, 150, 62, 0.5),
    0 0 30px rgba(200, 150, 62, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.premium-cta-button:hover::before {
  opacity: 1;
}

.cta-text {
  position: relative;
  z-index: 1;
  color: #ffffff !important;
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.8);
}

.cta-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.premium-cta-button:hover .cta-icon {
  transform: translateX(4px);
}

.cta-icon svg {
  color: #ffffff !important;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
}

.cta-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(20px);
  pointer-events: none;
}

.premium-cta-button:hover .cta-glow {
  opacity: 1;
}

/* Responsive Styles for Story Section */
@media screen and (max-width: 1199px) {
  .premium-story-section {
    padding: 70px 0 60px 0;
  }
  
  .premium-story-container {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  
  .story-title {
    font-size: 46px;
  }
  
  .gallery-frame {
    height: 550px;
  }
  
  .content-wrapper {
    padding: 50px;
  }
}

@media screen and (max-width: 991px) {
  .premium-story-section {
    padding: 60px 0 50px 0;
  }
  
  .story-header {
    margin-bottom: 60px;
  }
  
  .story-title {
    font-size: 40px;
  }
  
  .gallery-frame {
    height: 500px;
  }
  
  .gallery-image-wrapper {
    max-width: 400px;
  }
  
  .image-inner img {
    height: 450px;
  }
  
  .content-wrapper {
    padding: 40px;
    min-height: 400px;
  }
  
  .story-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .premium-story-section {
    padding: 50px 0 40px 0;
  }
  
  .story-header {
    margin-bottom: 50px;
  }
  
  .story-eyebrow {
    gap: 15px;
  }
  
  .eyebrow-line {
    max-width: 50px;
  }
  
  .story-eyebrow span {
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  .story-title {
    font-size: 32px;
  }
  
  .premium-story-container {
    gap: 50px;
  }
  
  .gallery-frame {
    height: 400px;
  }
  
  .gallery-image-wrapper {
    max-width: 300px;
  }
  
  .image-inner img {
    height: 350px;
  }
  
  .content-wrapper {
    padding: 30px;
    min-height: 350px;
  }
  
  .story-text {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .premium-cta-button {
    padding: 16px 32px;
    font-size: 14px;
  }
  
  .story-ambient-glow {
    width: 400px;
    height: 400px;
  }
}

@media screen and (max-width: 575px) {
  .story-title {
    font-size: 28px;
  }
  
  .gallery-frame {
    height: 350px;
  }
  
  .gallery-image-wrapper {
    max-width: 250px;
  }
  
  .gallery-image-wrapper[data-index="0"] {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .gallery-image-wrapper[data-index="1"] {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .image-inner img {
    height: 300px;
  }
  
  .content-wrapper {
    padding: 25px;
  }
  
  .premium-cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* ===============================================
   Why Choose Us Section - Redesigned
   =============================================== */

.why-choose-us-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.services-section .story-title,
.premium-showcase-section .story-title,
.why-choose-us-section .story-title,
.premium-gallery-section .story-title {
  color: var(--dark) !important;
  text-shadow: none;
}

.why-choose-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(184, 134, 11, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
  pointer-events: none;
}


.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.why-choose-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 35px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(184, 134, 11, 0.1);
  overflow: hidden;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.02) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 134, 11, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(184, 134, 11, 0.1);
}

.why-choose-card:hover::before {
  opacity: 1;
}

.card-icon-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(184, 134, 11, 0.05) 100%);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-card:hover .icon-background {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.15) 0%, rgba(184, 134, 11, 0.08) 100%);
  transform: scale(1.05) rotate(5deg);
}

.card-icon {
  position: relative;
  z-index: 1;
  color: var(--gold);
  transition: all 0.4s ease;
}

.why-choose-card:hover .card-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(184, 134, 11, 0.3));
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  opacity: 0.9;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin: 0 0 15px 0;
  font-family: var(--font-secondary);
  transition: color 0.3s ease;
}

.why-choose-card:hover .card-title {
  color: var(--gold);
}

.card-description {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.card-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.why-choose-card:hover .card-glow {
  opacity: 1;
}

/* Tablet Responsive */
@media screen and (max-width: 1199px) {
  .why-choose-grid {
    gap: 25px;
  }

  .why-choose-card {
    padding: 40px 30px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-description {
    font-size: 14px;
  }
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-card {
    padding: 35px 25px;
  }

  .card-icon-wrapper {
    width: 75px;
    height: 75px;
    margin-bottom: 25px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
  }

  .card-label {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .card-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .why-choose-card:hover {
    transform: translateY(-4px);
  }
}

/* Small Mobile */
@media screen and (max-width: 575px) {
  .why-choose-card {
    padding: 30px 20px;
  }

  .card-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 17px;
  }
}

/* ===============================================
   Premium Section Divider
   =============================================== */

.premium-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.premium-section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.divider-line-gradient {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184, 134, 11, 0.3) 50%, rgba(184, 134, 11, 0.6) 100%);
  max-width: 400px;
}

.divider-line-gradient:last-child {
  background: linear-gradient(90deg, rgba(184, 134, 11, 0.6) 0%, rgba(184, 134, 11, 0.3) 50%, transparent 100%);
}

.divider-ornament-wrapper {
  position: relative;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.divider-ornament {
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.3));
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .premium-section-divider {
    padding: 60px 0;
  }

  .divider-line-gradient {
    max-width: 120px;
  }

  .divider-ornament-wrapper {
    margin: 0 20px;
  }

  .divider-ornament {
    width: 32px;
    height: 32px;
  }
}

@media screen and (max-width: 575px) {
  .premium-section-divider {
    padding: 40px 0;
  }

  .divider-line-gradient {
    max-width: 80px;
  }

  .divider-ornament-wrapper {
    margin: 0 15px;
  }

  .divider-ornament {
    width: 28px;
    height: 28px;
  }
}

/* ===============================================
   Premium Gallery Section
   =============================================== */

.premium-gallery-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
}

.gallery-ambient-light {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  pointer-events: none;
}

.gallery-light-left {
  top: 10%;
  left: -200px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
}

.gallery-light-right {
  bottom: 10%;
  right: -200px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
}


.gallery-description {
  font-size: 17px;
  line-height: 1.7;
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.premium-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  position: relative;
  z-index: 1;
}

.gallery-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gallery-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gallery-image-container {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .image-wrapper img {
  transform: scale(1.08);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-card:hover .image-overlay {
  opacity: 1;
}

.image-shine-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.gallery-card:hover .image-shine-effect {
  transform: translateX(100%);
}

.gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.gallery-badge span {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(184, 134, 11, 0.95);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.gallery-card:hover .hover-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery-content {
  padding: 30px;
}

.gallery-meta {
  margin-bottom: 15px;
}

.gallery-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

.gallery-date svg {
  color: var(--gold);
}

.gallery-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin: 0 0 15px 0;
  font-family: var(--font-secondary);
  transition: color 0.3s ease;
}

.gallery-card:hover .gallery-title {
  color: var(--gold);
}

.gallery-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 20px 0;
}

.gallery-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.3s ease;
}

.gallery-card:hover .gallery-read-more {
  gap: 12px;
}

.gallery-read-more svg {
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-read-more svg {
  transform: translateX(4px);
}

@media screen and (max-width: 1199px) {
  .premium-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .gallery-image-container {
    height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .gallery-description {
    font-size: 15px;
  }

  .premium-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-image-container {
    height: 300px;
  }

  .gallery-content {
    padding: 25px;
  }

  .gallery-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 575px) {
  .gallery-image-container {
    height: 250px;
  }

  .gallery-content {
    padding: 20px;
  }

  .gallery-title {
    font-size: 18px;
  }
}

/* ===============================================
   Premium Footer
   =============================================== */

.premium-footer {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 80px 0 0 0;
  overflow: hidden;
}

.footer-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(200, 150, 62, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 60%),
    linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, transparent 50%, rgba(184, 134, 11, 0.06) 100%);
  pointer-events: none;
}

.footer-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.03) 20%, transparent 40%),
    linear-gradient(240deg, transparent 60%, rgba(184, 134, 11, 0.06) 80%, transparent 100%);
  pointer-events: none;
  opacity: 0.8;
}

.premium-footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo-wrapper img {
  max-width: 200px;
  height: auto;
}

.footer-brand-tagline {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tagline-decoration {
  display: flex;
  gap: 8px;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: decorationPulse 2s ease-in-out infinite;
}

.decoration-dot:nth-child(2) {
  animation-delay: 0.3s;
}

.decoration-dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes decorationPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.footer-brand-tagline h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
  font-family: var(--font-secondary);
}

.brand-description {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
}

.footer-info-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  margin: 0 0 25px 0;
  text-transform: uppercase;
}

.footer-column-title svg {
  color: var(--gold);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item span {
  color: #ffffff !important;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  padding-left: 5px;
}

.contact-item:hover svg {
  transform: scale(1.1);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-nav-list li a svg {
  color: var(--gold);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-nav-list li a:hover {
  padding-left: 5px;
}

.footer-nav-list li a:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.premium-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(184, 134, 11, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.social-link svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.1);
}

.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 60px 0 40px 0;
  position: relative;
  z-index: 1;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.divider-ornament {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.copyright-text {
  font-size: 13px;
  color: #ffffff;
  margin: 0;
}

.powered-by {
  margin-left: 5px;
}

.copyright-text a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright-text a:hover {
  color: #fff;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links li a {
  font-size: 13px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links li a:hover {
  color: var(--gold);
}

@media screen and (max-width: 1199px) {
  .premium-footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-info-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-social-column {
    grid-column: 1 / -1;
  }

  .premium-social-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .premium-footer {
    padding: 60px 0 0 0;
  }

  .premium-footer-main {
    gap: 40px;
  }

  .footer-info-columns {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .premium-social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .footer-divider {
    margin: 40px 0 30px 0;
  }
}

@media screen and (max-width: 575px) {
  .footer-logo-wrapper img {
    max-width: 150px;
  }

  .footer-brand-tagline h3 {
    font-size: 18px;
  }

  .brand-description {
    font-size: 13px;
    color: #ffffff;
  }

  .footer-column-title {
    font-size: 14px;
  }

  .contact-item,
  .footer-nav-list li a {
    font-size: 13px;
    color: #ffffff;
  }

  .premium-social-grid {
    grid-template-columns: 1fr;
  }

  .social-link {
    justify-content: center;
  }
}

/* ============================================================
 * Shared PAGE HERO — unified hero section za sve non-home stranice.
 *
 * Koriste sve CMS stranice preko `app/views/partials/page-hero.php`:
 *   /o-nama, /novosti, /novosti/{slug}, /prodavnice, /prodavnice/{slug},
 *   /kontakt, /privacy-policy, /cookies, /success-message, itd.
 *
 * Naslovna stranica (/) zadržava svoj original `.main-title` hero.
 *
 * Services pages (/usluge, /usluge/{slug}) dijele iste stilove kroz
 * alias selektore `.service-hero, .services-list-hero` koji se pridružuju
 * `.page-hero` pravilima.
 * ============================================================ */

.page-hero,
.service-hero,
.services-list-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.page-hero-image,
.service-hero-image,
.services-list-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-image img,
.service-hero-image img,
.services-list-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 12s ease-out forwards;
}

.page-hero-overlay,
.service-hero-overlay,
.services-list-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(200, 150, 62, 0.15) 0%, transparent 50%),
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.35) 0%,
      rgba(10, 10, 10, 0.55) 50%,
      rgba(10, 10, 10, 0.92) 100%);
}

.page-hero-inner,
.service-hero-inner,
.services-list-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 20px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.page-hero-breadcrumb,
.service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-system);
  font-size: 12.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-breadcrumb a,
.service-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-hero-breadcrumb a:hover,
.service-breadcrumb a:hover {
  color: var(--gold, #c8963e);
}

.page-hero-breadcrumb .current,
.service-breadcrumb .current {
  color: var(--gold, #c8963e);
  font-weight: 600;
  /* Truncation uklonjena — dugi CMS naslovi (npr. "Politika privatnosti
     i kolačići") su se prekidali na "…". Parent `.page-hero-breadcrumb`
     ima `flex-wrap: wrap` pa dugi title uredno prelazi u novi red
     umjesto da se siječe. */
}

.page-hero-titles,
.service-hero-titles,
.services-list-hero-titles {
  max-width: 880px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.page-hero-eyebrow,
.service-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold, #c8963e);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  letter-spacing: 0.3px;
  margin: 0;
}

.page-hero-eyebrow::before,
.page-hero-eyebrow::after,
.service-eyebrow::before,
.service-eyebrow::after {
  content: '';
  display: inline-block;
  width: 42px;
  height: 2px;
  flex-shrink: 0;
}
.page-hero-eyebrow::before,
.service-eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--gold, #c8963e));
}
.page-hero-eyebrow::after,
.service-eyebrow::after {
  background: linear-gradient(90deg, var(--gold, #c8963e), transparent);
}

.page-hero-title,
.service-title {
  font-family: var(--font-system);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.page-hero-meta,
.service-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-system);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.page-hero-meta svg,
.service-meta svg {
  stroke: var(--gold, #c8963e);
}

/* Brand logo slot — koristi ga shops/detail.php unutar meta slot-a partial-a.
   Slika se centralno skalira, max-height fiksirana da hero ne postane previsok. */
.page-hero-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

.page-hero-brand-logo img {
  max-width: 260px;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 767px) {
  .page-hero-brand-logo {
    padding: 10px 20px;
    border-radius: 12px;
  }
  .page-hero-brand-logo img {
    max-width: 200px;
    max-height: 80px;
  }
}

/* Responsive */
@media (min-width: 768px) {
  .page-hero,
  .service-hero,
  .services-list-hero {
    min-height: 440px;
  }
  .page-hero-inner,
  .service-hero-inner,
  .services-list-hero-inner {
    padding: 140px 24px 64px;
  }
}

@media (min-width: 1024px) {
  .page-hero,
  .service-hero,
  .services-list-hero {
    min-height: 480px;
  }
  .page-hero-inner,
  .service-hero-inner,
  .services-list-hero-inner {
    padding: 160px 24px 72px;
  }
}

@media (max-width: 767px) {
  .page-hero,
  .service-hero,
  .services-list-hero {
    min-height: 320px;
  }
  .page-hero-inner,
  .service-hero-inner,
  .services-list-hero-inner {
    padding: 100px 16px 40px;
    gap: 16px;
  }
  .page-hero-breadcrumb,
  .service-breadcrumb {
    font-size: 11px;
    padding: 6px 14px;
  }
  .page-hero-eyebrow,
  .service-eyebrow {
    font-size: 22px;
  }
  .page-hero-eyebrow::before,
  .page-hero-eyebrow::after,
  .service-eyebrow::before,
  .service-eyebrow::after {
    width: 28px;
  }
}

/* Ken-burns keyframe ako već nije definisan (safe-guard) */
@keyframes kenBurns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}

/* ============================================================
 * Service detail — BODY layout (hero je gore u shared PAGE HERO bloku).
 * Mobile-first. Glass content card + gold accents + sidebar nav.
 * Zamjena za shops/detail layout kad archive.slug_cg='usluge'.
 * ============================================================ */

/* ----- Body grid ----- */
.service-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 60px 20px;
  position: relative;
}

.service-content {
  min-width: 0;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(200, 150, 62, 0.12);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.05),
    0 2px 6px rgba(0, 0, 0, 0.03);
  font-family: var(--font-system);
  font-size: 16px;
  line-height: 1.8;
  color: #2d2d2d;
}

.service-card > :first-child { margin-top: 0; }
.service-card > :last-child  { margin-bottom: 0; }

/*
 * Typography discipline za CMS content:
 *   - Paragrafi: justify (inter-word + hyphens) za premium book-like look
 *     sa clean desnim marginom, ali FALLBACK na left-align na mobilnom
 *     da izbjegnemo ružne "rivers" između kratkih riječi u uskoj koloni.
 *   - Liste: veći margin-left nego paragrafi → bullets jasno uvučene u
 *     odnosu na tekst. Bullet marker sjedi u paddingu, text hangs indented.
 *   - `text-wrap: pretty` (tamo gde je podržano, Chrome 117+/Safari 17.4+)
 *     popravlja zadnji red paragrafa da ne ostane orphan/widow.
 */
.service-card p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  text-wrap: pretty;
}

.service-card h1,
.service-card h2,
.service-card h3,
.service-card h4 {
  font-family: var(--font-system);
  color: #1a1a1a;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-top: 36px;
  margin-bottom: 14px;
}

.service-card h2 { font-size: 28px; }
.service-card h3 { font-size: 22px; }
.service-card h4 { font-size: 18px; }

.service-card p { color: #3a3a3a; margin: 0 0 18px; }

.service-card strong {
  color: #1a1a1a;
  font-weight: 600;
}

.service-card a {
  color: var(--gold, #c8963e);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.service-card a:hover {
  color: #a67a2e;
}

/*
 * CMS-driven liste (bullet/numeric) iz text/text2 polja.
 *   - Global reset (`ul { list-style: none }`, linija 268) gasi markere, pa
 *     eksplicitno vraćamo `disc`/`decimal` unutar `.service-card`.
 *   - Hanging indent: list container je margin-left: 38px (vs paragraf 0px).
 *     Tako bullets sjede u "ušici" ispod paragrafa a tekst je lijevo jasno
 *     uvučen u odnosu na ostali sadržaj — prepoznatljiv editorial stil.
 *   - `text-align: left` overridea paragraf-level `justify` (unutar li nema
 *     dovoljno teksta da justify ima smisla, "rivers" problem).
 *   - Custom circle marker sa CSS counter-style trikom → gold filled dot
 *     koji je vizuelno jači od default `disc`-a.
 */
.service-card ul,
.service-card ol {
  margin: 18px 0 22px 38px;
  padding-left: 0;
}

.service-card ul { list-style: disc; }
.service-card ol { list-style: decimal; }

.service-card ul ul,
.service-card ol ul  { list-style: circle; margin: 10px 0 10px 28px; }
.service-card ol ol,
.service-card ul ol  { list-style: lower-alpha; margin: 10px 0 10px 28px; }

.service-card li {
  margin-bottom: 10px;
  padding-left: 8px;
  color: #3a3a3a;
  line-height: 1.75;
  text-align: left;
}

.service-card li::marker {
  color: var(--gold, #c8963e);
  font-size: 1.15em;
  font-weight: 700;
}

.service-card li:last-child { margin-bottom: 0; }

/* Duži list item sa paragrafom unutar — inherit justify za taj p. */
.service-card li p {
  margin: 0 0 8px;
  text-align: justify;
}
.service-card li p:last-child { margin-bottom: 0; }

.service-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 18px 0;
}

.service-text-secondary {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #4a4a4a;
}

/* ----- Gallery ----- */
.service-gallery {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-gallery-title {
  font-family: var(--font-system);
  font-size: 22px;
  color: #1a1a1a;
  margin: 0 0 18px;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.service-gallery-item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: zoom-in;
}

.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-gallery-item:hover img {
  transform: scale(1.08);
}

/* ----- Sidebar ----- */
.service-sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ----- Services list menu (iznad info card) ----- */
.service-list-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 20px 22px 16px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.04),
    0 2px 6px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 100px;
}

.service-list-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(200, 150, 62, 0.18);
}

.service-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(200, 150, 62, 0.1);
  color: var(--gold, #c8963e);
  flex-shrink: 0;
}

.service-list-title {
  margin: 0;
  font-family: var(--font-system);
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.2px;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-list-item {
  position: relative;
}

.service-list-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none !important;
  color: #3a3a3a;
  font-family: var(--font-system);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.2s ease;
  cursor: pointer;
}

.service-list-bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}

.service-list-name {
  flex-grow: 1;
  min-width: 0;
}

.service-list-arrow {
  flex-shrink: 0;
  color: #bbb;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}

a.service-list-link:hover {
  background: rgba(200, 150, 62, 0.08);
  color: #1a1a1a;
}

a.service-list-link:hover .service-list-bullet {
  background: var(--gold, #c8963e);
  transform: scale(1.3);
}

a.service-list-link:hover .service-list-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold, #c8963e);
}

.service-list-item.current .service-list-link {
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.12), rgba(200, 150, 62, 0.04));
  border: 1px solid rgba(200, 150, 62, 0.35);
  color: #1a1a1a;
  font-weight: 700;
  cursor: default;
  padding: 10px 13px; /* kompenzuje border da se stavke ne razdvajaju vizuelno */
}

.service-list-item.current .service-list-bullet {
  background: var(--gold, #c8963e);
  box-shadow: 0 0 0 4px rgba(200, 150, 62, 0.18);
}

/* ----- Sidebar info card ----- */
.service-info-card {
  /* Ne sticky — sidebar sadrži dvije sticky sekcije (lista + info) što ne
     radi u flex column sa gap-om; ostavljamo samo list-card sticky da user
     uvijek vidi navigaciju pri skrolu. Info card slijedi normalan flow. */
  position: relative;
  padding: 28px 28px 32px;
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(200, 150, 62, 0.25);
  border-radius: 16px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-info-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.15) 0%, transparent 60%);
  animation: servicePulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes servicePulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.service-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(200, 150, 62, 0.15);
  color: var(--gold, #c8963e);
  position: relative;
  z-index: 1;
}

.service-info-title {
  font-family: var(--font-system);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.service-info-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}

.service-info-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--gold, #c8963e);
  color: #0a0a0a !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 30px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(200, 150, 62, 0.35);
}

.service-info-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 150, 62, 0.5);
  background: #d4a843;
}

.service-info-cta svg {
  transition: transform 0.25s ease;
}

.service-info-cta:hover svg {
  transform: translateX(3px);
}

/* ----- Prev/Next nav ----- */
.service-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 20px 80px;
}

.service-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  text-decoration: none !important;
  color: #1a1a1a;
  transition: all 0.25s ease;
  min-height: 84px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-nav-link:hover {
  border-color: var(--gold, #c8963e);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 150, 62, 0.15);
}

.service-nav-link.next {
  flex-direction: row-reverse;
  text-align: right;
}

.service-nav-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 150, 62, 0.1);
  color: var(--gold, #c8963e);
  transition: all 0.25s ease;
}

.service-nav-link:hover .service-nav-arrow {
  background: var(--gold, #c8963e);
  color: #fff;
  transform: scale(1.05);
}

.service-nav-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.service-nav-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  font-weight: 500;
}

.service-nav-title {
  font-family: var(--font-system);
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ----- Responsive ----- */
@media (min-width: 768px) {
  .service-hero {
    min-height: 420px;
  }
  .service-hero-inner {
    padding: 140px 24px 60px;
  }
  .service-card {
    padding: 44px 48px;
  }
  .service-card h2 { font-size: 32px; }
  .service-nav {
    padding: 0 24px 100px;
  }
  .service-nav-link {
    padding: 22px 28px;
    min-height: 96px;
  }
  .service-nav-title {
    font-size: 17px;
  }
  .service-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .service-hero {
    min-height: 480px;
  }
  .service-hero-inner {
    padding: 160px 20px 72px;
  }
  .service-body {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 48px;
    padding: 80px 20px;
  }
  .service-card {
    padding: 52px 56px;
  }
  .service-card h2 { font-size: 34px; }
}

@media (max-width: 767px) {
  .service-hero-inner {
    padding: 100px 16px 36px;
  }
  .service-breadcrumb {
    font-size: 11px;
  }
  .service-eyebrow {
    font-size: 20px;
  }
  .service-eyebrow::before {
    width: 28px;
  }
  .service-body {
    padding: 40px 14px;
    gap: 24px;
  }
  .service-card {
    padding: 24px 22px;
    border-radius: 14px;
    font-size: 15px;
  }
  .service-card h2 { font-size: 22px; margin-top: 28px; }
  .service-card h3 { font-size: 18px; }
  /* Na uskoj koloni justify pravi velike razmake između riječi ("rivers") —
     revertujemo na left. Liste dobijaju manji margin-left da ne gube previše
     prostora u sadržaju. */
  .service-card p {
    text-align: left;
    hyphens: manual;
    -webkit-hyphens: manual;
  }
  .service-card ul,
  .service-card ol {
    margin: 14px 0 18px 22px;
  }
  .service-card ul ul,
  .service-card ol ul,
  .service-card ol ol,
  .service-card ul ol { margin: 8px 0 8px 18px; }
  .service-card li { padding-left: 4px; }
  .service-info-card {
    position: static;
    padding: 24px 22px 28px;
  }
  .service-list-card {
    position: static;
    padding: 18px 20px 14px;
  }
  .service-list-link {
    padding: 10px 12px;
    font-size: 13.5px;
  }
  .service-list-item.current .service-list-link {
    padding: 9px 11px;
  }
  .service-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
  }
  .service-nav {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 14px 48px;
  }
  .service-nav-link {
    padding: 14px 16px;
    min-height: 72px;
  }
  .service-nav-title {
    font-size: 14px;
  }
}

/* ============================================================
 * Services LIST — premium redesign (/usluge/)
 * Modern 2026 standard: clean grid, layered cards, micro-interactions,
 * no brand-logo overlay. Mobile-first, CSS grid auto-fit, staggered reveal.
 *
 * Hero je pokriven shared PAGE HERO blokom iznad (unified `.page-hero /
 * .service-hero / .services-list-hero` pravila). Ovde definišemo samo
 * intro i grid sekciju specifičnu za listu usluga.
 * ============================================================ */

/* ----- Intro ----- */
/* Padding usaglašen sa `.blog-list-intro` (60px top) da bi se naslov iz CMS
 * text-a razmaknuo dovoljno od hero-a — konzistentno sa ostalim archive
 * stranicama (news, our-works). */
.services-list-intro {
  padding: 60px 20px 20px;
}

.services-list-intro-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.services-list-intro-label {
  display: inline-block;
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold, #c8963e);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.services-list-intro-text {
  font-family: var(--font-system);
  font-size: 17px;
  line-height: 1.75;
  color: #3a3a3a;
}

.services-list-intro-text p {
  margin: 0 0 14px;
}
.services-list-intro-text p:last-child { margin-bottom: 0; }

.services-list-intro-text h2,
.services-list-intro-text h3 {
  font-family: var(--font-system);
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  margin: 0 0 16px;
}

/* ----- Grid ----- */
.services-list-grid-wrapper {
  padding: 40px 20px 100px;
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.services-list-empty {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  font-size: 16px;
}

/* ----- Card ----- */
.services-list-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.3s ease;
  /* Staggered entrance animacija — svaka kartica kasni 80ms više */
  animation: cardFadeIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(var(--card-index, 0) * 80ms);
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-list-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 150, 62, 0.35);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(200, 150, 62, 0.2);
}

.services-list-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
}

/* Media (cover image) */
.services-list-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.services-list-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services-list-card:hover .services-list-card-media img {
  transform: scale(1.08);
}

.services-list-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services-list-card:hover .services-list-card-media::after {
  opacity: 1;
}

.services-list-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200, 150, 62, 0.4);
}

.services-list-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  font-family: var(--font-system);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold, #c8963e);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.services-list-card:hover .services-list-card-badge {
  transform: scale(1.1) rotate(-5deg);
  background: var(--gold, #c8963e);
  color: #fff;
}

/* Body */
.services-list-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 26px 26px;
  gap: 10px;
}

.services-list-card-eyebrow {
  display: inline-block;
  font-family: var(--font-system);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold, #c8963e);
}

.services-list-card-title {
  font-family: var(--font-system);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.3px;
  transition: color 0.25s ease;
}

.services-list-card:hover .services-list-card-title {
  color: var(--gold, #c8963e);
}

.services-list-card-excerpt {
  flex-grow: 1;
  font-family: var(--font-system);
  font-size: 14px;
  line-height: 1.65;
  color: #5a5a5a;
  margin: 0;
}

.services-list-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--font-system);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: color 0.25s ease, gap 0.3s ease;
}

.services-list-card-cta svg {
  transition: transform 0.3s ease;
}

.services-list-card:hover .services-list-card-cta {
  color: var(--gold, #c8963e);
  gap: 14px;
}

.services-list-card:hover .services-list-card-cta svg {
  transform: translateX(4px);
}

/* ----- Responsive ----- */
@media (min-width: 768px) {
  .services-list-hero {
    min-height: 400px;
  }
  .services-list-hero-inner {
    padding: 140px 24px 60px;
  }
  .services-list-intro {
    padding: 80px 24px 30px;
  }
  .services-list-intro-label {
    font-size: 24px;
  }
  .services-list-intro-text {
    font-size: 18px;
  }
  .services-list-intro-text h2,
  .services-list-intro-text h3 {
    font-size: 32px;
  }
  .services-list-grid-wrapper {
    padding: 50px 24px 120px;
  }
  .services-list-grid {
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .services-list-hero {
    min-height: 460px;
  }
  .services-list-hero-inner {
    padding: 160px 20px 72px;
  }
  .services-list-intro {
    padding: 90px 20px 30px;
  }
  .services-list-grid-wrapper {
    padding: 60px 20px 140px;
  }
  .services-list-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
  .services-list-card-body {
    padding: 28px 30px 30px;
  }
  .services-list-card-title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .services-list-hero-inner {
    padding: 100px 16px 36px;
  }
  .services-list-intro {
    padding: 40px 16px 16px;
  }
  .services-list-intro-text {
    font-size: 15px;
  }
  .services-list-intro-text h2,
  .services-list-intro-text h3 {
    font-size: 22px;
  }
  .services-list-grid-wrapper {
    padding: 28px 14px 60px;
  }
  .services-list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-list-card-body {
    padding: 20px 22px 22px;
  }
  .services-list-card-title {
    font-size: 19px;
  }
  .services-list-card-excerpt {
    font-size: 13.5px;
  }
}

/* Reduced motion — disable card entry animation + kenBurns + zoom */
@media (prefers-reduced-motion: reduce) {
  .services-list-card,
  .services-list-hero-image img {
    animation: none;
  }
  .services-list-card:hover {
    transform: none;
  }
  .services-list-card:hover .services-list-card-media img {
    transform: none;
  }
}

/* ============================================================
 * O NAMA (About) — premium template dizajn.
 *
 * Koristi shared PAGE HERO partial za hero sekciju (nedirnut).
 * Ispod hero-a 5 premium sekcija: Story (2-col), Stats strip,
 * Values cards, opcioni CMS text2, i CTA blok.
 * ============================================================ */

/* ----- 2. Story section (dva stupca) ----- */
.about-story {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, #fcfaf7 0%, #ffffff 100%);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 0 20px;
}

.about-story-content {
  min-width: 0;
}

.about-story-eyebrow {
  display: inline-block;
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold, #c8963e);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.about-story-text {
  font-family: var(--font-system);
  font-size: 16px;
  line-height: 1.85;
  color: #3a3a3a;
}

.about-story-text h2,
.about-story-text h3 {
  font-family: var(--font-system);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin: 0 0 22px;
}

.about-story-text p {
  margin: 0 0 18px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  text-wrap: pretty;
}
.about-story-text p:last-child { margin-bottom: 0; }

.about-story-text strong { color: #1a1a1a; }

/* Story visual — slika sa decorative frame-om i year badge-om */
.about-story-visual {
  position: relative;
  min-height: 360px;
  padding: 20px 20px 20px 0;
}

.about-story-image {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.18),
    0 2px 4px rgba(0, 0, 0, 0.05);
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-story-image:hover img {
  transform: scale(1.05);
}

/* Dekorativni gold frame koji visi iza slike, offsetovan */
.about-story-frame {
  position: absolute;
  inset: 0 0 0 20px;
  border: 2px solid var(--gold, #c8963e);
  border-radius: 8px;
  z-index: 1;
  transform: translate(16px, 16px);
  opacity: 0.6;
}

/* Year badge — circular badge u gornjem desnom uglu slike */
.about-story-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 2px solid var(--gold, #c8963e);
  border-radius: 50%;
  color: #fff;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: rotate(-6deg);
  transition: transform 0.4s ease;
}

.about-story-visual:hover .about-story-badge {
  transform: rotate(0deg) scale(1.05);
}

.about-story-badge-year {
  font-family: var(--font-system);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold, #c8963e);
  letter-spacing: -0.3px;
  line-height: 1;
}

.about-story-badge-label {
  font-family: var(--font-system);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

/* ----- 3. About separator ----- */
/*
 * Raniji brojčani strip (stats) je povučen iz About toka — na njegovom
 * mjestu je sada diskretan tamni blok koji služi kao vizuelni predah
 * između prethodne i sljedeće sekcije. Pozadina je tamnija od ostatka
 * stranice (#050505 vs generalni dark tone) da se oči "odmore" na
 * praznom prostoru bez da se unosi bilo kakav novi sadržaj/dekoracija.
 */
.about-separator {
  padding: 48px 0;
  background: #050505;
  position: relative;
}

/* ============================================================
   About page — stats strip
   ============================================================
   Tamna sekcija sa 2–4 "stat" kartice u horizontalnoj liniji.
   Koristi se na /o-nama i ostalim page-ovima koji dobiju stats
   iz dp_page_stats kroz admin "Stats" tab.

   Tipografija ima dva režima (per-item toggle sa modifier klasom):
     .about-stat--numeric  → display font 72–96px (brojevi poput 1945)
     .about-stat--text     → smaller 22–26px (tekstualne vrijednosti)

   Grid je "auto-fit minmax(220px, 1fr)" pa se broj kolona prilagodi
   broju stavki i širini ekrana (4 stavke → 4 kolone na desktopu,
   2×2 na tabletu, 1×N na telefonu).
   ============================================================ */

.about-stats {
  padding: 72px 0;
  background: #050505;
  position: relative;
  color: #f5efe4;
  overflow: hidden;
}

/* Decorative zlatne hairline linije gore-dolje, za strukturu */
.about-stats::before,
.about-stats::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(200, 150, 62, 0.22) 20%,
    rgba(200, 150, 62, 0.35) 50%,
    rgba(200, 150, 62, 0.22) 80%,
    transparent);
}
.about-stats::before { top: 0; }
.about-stats::after  { bottom: 0; }

.about-stats-inner {
  padding: 0 24px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px 48px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: end;
}

.about-stat {
  position: relative;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

/* Zlatni divider između statova (na desktopu, samo između — ne
   poslije posljednjeg). Koristi :not(:last-child) da ne visi na kraju. */
@media (min-width: 768px) {
  .about-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25%;
    right: -24px;
    width: 1px;
    height: 50%;
    background: linear-gradient(180deg,
      transparent,
      rgba(200, 150, 62, 0.25) 50%,
      transparent);
  }
}

/* Value wrapper — drži main vrijednost i suffix inline, baseline-poravnate. */
.about-stat-value {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
  color: #fff;
}

.about-stat-value-main {
  font-family: var(--font-system);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-stat-value-suffix {
  font-family: var(--font-system);
  font-weight: 500;
  color: var(--gold, #c8963e);
}

/* Numeric mode — veliki display font za brojeve (1945, 1000+, 5.0). */
.about-stat--numeric .about-stat-value-main {
  font-size: clamp(42px, 6vw, 76px);
}
.about-stat--numeric .about-stat-value-suffix {
  font-size: clamp(20px, 2.8vw, 34px);
  transform: translateY(-0.12em); /* vizuelno poravnaj sa top dijelom brojke */
}

/* Text mode — manji diskretni font, label dobija vizuelni fokus. */
.about-stat--text .about-stat-value {
  color: var(--gold, #c8963e);
}
.about-stat--text .about-stat-value-main {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0;
}
.about-stat--text .about-stat-value-suffix {
  font-size: 0.8em;
  transform: none;
}

/* Label — uppercase, zlatna, mala, iza value-a. */
.about-stat-label {
  font-family: var(--font-system);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: rgba(245, 239, 228, 0.72);
  max-width: 220px;
  line-height: 1.45;
}

/* U text režimu label ima jači vizuelni naglasak (veći, bjelji). */
.about-stat--text .about-stat-label {
  font-size: 13px;
  color: rgba(245, 239, 228, 0.92);
  letter-spacing: 2.4px;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .about-stats {
    padding: 56px 0;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
  .about-stat--numeric .about-stat-value-main {
    font-size: clamp(36px, 9vw, 52px);
  }
  .about-stat-label {
    font-size: 10.5px;
    letter-spacing: 1.6px;
  }
}

@media (max-width: 420px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.about-separator-inner {
  /* Prazna zona — inner je zadržan samo radi konzistentnosti sa
     drugim about sekcijama (koje sve imaju .max-width wrapper),
     iako u separator-u nema sadržaja. */
  min-height: 1px;
}

/* ----- 4. Values cards ----- */
.about-values {
  padding: 50px 20px 70px;
}

.about-values-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.about-values-eyebrow {
  display: inline-block;
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold, #c8963e);
  margin-bottom: 12px;
}

.about-values-title {
  font-family: var(--font-system);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin: 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.about-value-card {
  position: relative;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.04),
    0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.3s ease;
  animation: cardFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(var(--card-index, 0) * 120ms);
  overflow: hidden;
}

/* Dekorativna gold corner ribbon */
.about-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(225deg, rgba(200, 150, 62, 0.12), transparent 70%);
  transition: all 0.4s ease;
}

.about-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 150, 62, 0.3);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(200, 150, 62, 0.15);
}

.about-value-card:hover::before {
  background: linear-gradient(225deg, rgba(200, 150, 62, 0.25), transparent 70%);
}

.about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.12), rgba(200, 150, 62, 0.04));
  border: 1px solid rgba(200, 150, 62, 0.2);
  border-radius: 16px;
  color: var(--gold, #c8963e);
  transition: transform 0.4s ease, background 0.4s ease;
}

.about-value-card:hover .about-value-icon {
  transform: scale(1.05) rotate(-3deg);
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.2), rgba(200, 150, 62, 0.08));
}

.about-value-title {
  font-family: var(--font-system);
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  line-height: 1.3;
  margin: 0 0 14px;
}

.about-value-text {
  font-family: var(--font-system);
  font-size: 14.5px;
  line-height: 1.75;
  color: #5a5a5a;
  margin: 0;
}

/* ----- 5. Secondary CMS text ----- */
.about-secondary {
  padding: 40px 20px 60px;
}

.about-secondary-inner {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-system);
  font-size: 16px;
  line-height: 1.85;
  color: #3a3a3a;
}

.about-secondary-inner p {
  margin: 0 0 18px;
  text-align: justify;
}

/* ----- 6. CTA block ----- */
.about-cta {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(200, 150, 62, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(200, 150, 62, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #fff;
  overflow: hidden;
}

.about-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.about-cta-quote {
  margin-bottom: 40px;
  position: relative;
}

.about-cta-quote-mark {
  display: block;
  margin: 0 auto 18px;
  color: var(--gold, #c8963e);
  opacity: 0.85;
}

.about-cta-text {
  font-family: var(--font-system);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  font-style: italic;
  letter-spacing: -0.2px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-system);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.about-cta-btn-primary {
  background: var(--gold, #c8963e);
  color: #0a0a0a;
  box-shadow: 0 8px 24px rgba(200, 150, 62, 0.3);
}

.about-cta-btn-primary:hover {
  background: #dba346;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(200, 150, 62, 0.45);
  gap: 14px;
}

.about-cta-btn-primary svg {
  transition: transform 0.3s ease;
}

.about-cta-btn-primary:hover svg {
  transform: translateX(3px);
}

.about-cta-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.25);
}

.about-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold, #c8963e);
  color: var(--gold, #c8963e);
  transform: translateY(-2px);
}

/* ----- Responsive ----- */
@media (min-width: 768px) {
  .about-story {
    padding: 56px 0 80px;
  }
  .about-separator {
    padding: 64px 0;
  }
  .about-values {
    padding: 64px 24px 90px;
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .about-cta {
    padding: 110px 0;
  }
}

@media (min-width: 1024px) {
  .about-story-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    padding: 0 24px;
  }
  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .about-value-card {
    padding: 40px 36px;
  }
}

@media (min-width: 1400px) {
  .about-story {
    padding: 72px 0 100px;
  }
  .about-values {
    padding: 80px 24px 110px;
  }
}

@media (max-width: 767px) {
  .about-story {
    padding: 32px 0 40px;
  }
  .about-story-inner {
    gap: 40px;
    padding: 0 16px;
  }
  .about-story-visual {
    min-height: auto;
    padding: 16px 16px 16px 0;
  }
  .about-story-badge {
    width: 88px;
    height: 88px;
  }
  .about-story-badge-year {
    font-size: 22px;
  }
  .about-story-badge-label {
    font-size: 8px;
  }
  .about-separator {
    padding: 32px 0;
  }
  .about-values {
    padding: 36px 14px 44px;
  }
  .about-values-header {
    margin-bottom: 36px;
  }
  .about-value-card {
    padding: 28px 24px;
  }
  .about-cta {
    padding: 60px 0;
  }
  .about-cta-inner {
    padding: 0 16px;
  }
  .about-cta-quote {
    margin-bottom: 28px;
  }
  .about-cta-btn {
    padding: 13px 26px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-value-card {
    animation: none;
  }
  .about-value-card:hover {
    transform: none;
  }
  .about-story-image:hover img {
    transform: none;
  }
}

/* ============================================================
 * KONTAKT — premium template dizajn.
 *
 * Koristi shared PAGE HERO partial za hero (nedirnut). Ispod:
 *   2. Quick contact cards (Email / Phone / Location)
 *   3. Main split (form panel + sidebar sa radnim vremenom + social)
 *   4. Map sa floating info karticom
 * ============================================================ */

/* ----- 2. Quick contact cards ----- */
.contact-quick {
  padding: 80px 20px 40px;
}

.contact-quick-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.contact-quick-eyebrow {
  display: inline-block;
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold, #c8963e);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.contact-quick-title {
  font-family: var(--font-system);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin: 0;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-quick-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  text-decoration: none !important;
  color: inherit;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.3s ease;
  animation: cardFadeIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(var(--card-index, 0) * 100ms);
  position: relative;
  overflow: hidden;
}

.contact-quick-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold, #c8963e);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-quick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 150, 62, 0.3);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(200, 150, 62, 0.18);
}

.contact-quick-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.contact-quick-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.14), rgba(200, 150, 62, 0.04));
  border: 1px solid rgba(200, 150, 62, 0.22);
  border-radius: 14px;
  color: var(--gold, #c8963e);
  transition: transform 0.4s ease, background 0.4s ease;
}

.contact-quick-card:hover .contact-quick-icon {
  transform: scale(1.06) rotate(-4deg);
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.22), rgba(200, 150, 62, 0.08));
}

.contact-quick-body {
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-quick-label {
  font-family: var(--font-system);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold, #c8963e);
}

.contact-quick-value {
  font-family: var(--font-system);
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
  word-break: break-word;
}

.contact-quick-value.secondary {
  font-size: 14px;
  font-weight: 500;
  color: #5a5a5a;
  margin-top: 2px;
}

.contact-quick-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #c0c0c0;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.contact-quick-card:hover .contact-quick-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold, #c8963e);
}

/* ----- 3. Main section (Form + Sidebar) ----- */
.contact-main {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
}

.contact-main-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 0 20px;
}

/* Form panel */
.contact-form-panel {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.03);
}

.contact-form-header {
  margin-bottom: 32px;
}

.contact-form-eyebrow {
  display: inline-block;
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold, #c8963e);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.contact-form-title,
.contact-form-intro h2,
.contact-form-intro h3 {
  font-family: var(--font-system);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.contact-form-intro p {
  font-family: var(--font-system);
  font-size: 15px;
  line-height: 1.7;
  color: #5a5a5a;
  margin: 0 0 10px;
}

.contact-form-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 12px;
  color: #b91c1c;
  font-family: var(--font-system);
  font-size: 14px;
  margin-bottom: 22px;
}

/* Form itself */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.contact-form-label {
  font-family: var(--font-system);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3a3a3a;
}

.contact-form-label .req {
  color: var(--gold, #c8963e);
  margin-left: 2px;
}

.contact-form-input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-system);
  font-size: 15px;
  line-height: 1.4;
  color: #1a1a1a;
  background: #fafaf8;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.contact-form-input::placeholder {
  color: #a0a0a0;
  font-weight: 400;
}

.contact-form-input:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.18);
}

.contact-form-input:focus {
  background: #fff;
  border-color: var(--gold, #c8963e);
  box-shadow: 0 0 0 4px rgba(200, 150, 62, 0.12);
}

.contact-form-input.is-invalid {
  border-color: #dc2626;
  background: rgba(220, 38, 38, 0.03);
}

.contact-form-input.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.contact-form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-system);
}

.contact-form-error {
  font-family: var(--font-system);
  font-size: 12.5px;
  color: #dc2626;
  margin-top: 2px;
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--gold, #c8963e) 0%, #b8862e 100%);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-system);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(200, 150, 62, 0.3);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  align-self: flex-start;
}

.contact-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(200, 150, 62, 0.45);
  gap: 14px;
}

.contact-form-submit:active {
  transform: translateY(0);
}

.contact-form-submit svg {
  transition: transform 0.3s ease;
}

.contact-form-submit:hover svg {
  transform: translateX(3px);
}

/* Override globalnog span pravila (linije 427-451) unutar submit dugmeta */
.contact-form-submit span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #ffffff;
  letter-spacing: inherit;
  text-transform: inherit;
  display: inline;
  gap: 0;
}

.contact-form-submit span::before {
  content: none;
  display: none;
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.contact-sidebar-card {
  padding: 28px 28px 30px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.contact-sidebar-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(200, 150, 62, 0.12), transparent 70%);
  pointer-events: none;
}

.contact-sidebar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.14), rgba(200, 150, 62, 0.04));
  border: 1px solid rgba(200, 150, 62, 0.22);
  border-radius: 12px;
  color: var(--gold, #c8963e);
}

.contact-sidebar-title {
  font-family: var(--font-system);
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.2px;
  margin: 0 0 10px;
}

.contact-sidebar-text {
  font-family: var(--font-system);
  font-size: 14.5px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0 0 14px;
}

/* Radno vrijeme card specific */
.contact-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 999px;
  font-family: var(--font-system);
  font-size: 12px;
  font-weight: 600;
  color: #047857;
  letter-spacing: 0.3px;
}

.contact-hours-dot {
  display: none;
}

.contact-hours-badge {
  gap: 0;
}

@keyframes contactPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.92); }
}

/* Social card specific */
.contact-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.contact-social-icons .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #3a3a3a;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-social-icons .social-link:hover {
  background: var(--gold, #c8963e);
  border-color: var(--gold, #c8963e);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(200, 150, 62, 0.35);
}

.contact-social-icons .social-link span {
  display: none;
}

/* ----- 4. Map section ----- */
.contact-map {
  position: relative;
  height: 440px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(0.9);
}

.contact-map-card {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(200, 150, 62, 0.08);
}

.contact-map-card-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.18), rgba(200, 150, 62, 0.05));
  border: 1px solid rgba(200, 150, 62, 0.3);
  border-radius: 12px;
  color: var(--gold, #c8963e);
}

.contact-map-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-map-card-label {
  font-family: var(--font-system);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--gold, #c8963e);
}

.contact-map-card-value {
  font-family: var(--font-system);
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

.contact-map-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-family: var(--font-system);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold, #c8963e);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.2s ease;
}

.contact-map-card-link:hover {
  color: #a67a2e;
  gap: 10px;
}

/* ----- Responsive ----- */
@media (min-width: 768px) {
  .contact-quick {
    padding: 100px 24px 50px;
  }
  .contact-quick-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .contact-quick-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 28px 26px;
    gap: 18px;
  }
  .contact-quick-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
  }
  .contact-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .contact-main {
    padding: 70px 0 100px;
  }
  .contact-main-inner {
    padding: 0 24px;
  }
  .contact-map {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .contact-main-inner {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
  .contact-form-panel {
    padding: 44px 44px 48px;
  }
  .contact-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
  }
  .contact-map {
    height: 560px;
  }
}

@media (min-width: 1400px) {
  .contact-quick {
    padding: 120px 24px 60px;
  }
  .contact-main-inner {
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .contact-quick {
    padding: 56px 14px 28px;
  }
  .contact-quick-header {
    margin-bottom: 28px;
  }
  .contact-quick-title {
    font-size: clamp(22px, 6vw, 28px);
  }
  .contact-quick-grid {
    gap: 14px;
  }
  .contact-quick-card {
    padding: 18px 18px;
    gap: 14px;
  }
  .contact-quick-icon {
    width: 44px;
    height: 44px;
  }
  .contact-quick-icon svg {
    width: 22px;
    height: 22px;
  }
  .contact-quick-body {
    gap: 2px;
  }
  .contact-quick-label {
    font-size: 10.5px;
    letter-spacing: 0.9px;
  }
  .contact-quick-value {
    font-size: 14.5px;
    line-height: 1.35;
    /* Dugi email-ovi poput "info@ssgstyle.me" se ponašaju kao jedna neprekinuta
       riječ (browser ih ne lomi na @ po defaultu). overflow-wrap:anywhere
       dozvoljava break na svakoj tački AKO ne stane — inače ostaje u jednom
       redu. Bolje od break-word koji je previše agresivan. */
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .contact-quick-value.secondary {
    font-size: 12.5px;
  }
  .contact-main {
    padding: 40px 0 60px;
  }
  .contact-main-inner {
    padding: 0 14px;
    gap: 22px;
  }
  .contact-form-panel {
    padding: 28px 20px 30px;
    border-radius: 16px;
  }
  .contact-form-row {
    gap: 14px;
  }
  .contact-form-input {
    font-size: 15px;
  }
  .contact-sidebar-card {
    padding: 22px 20px 24px;
  }
  .contact-form-submit {
    width: 100%;
    padding: 15px 28px;
    font-size: 14.5px;
  }
  .contact-map {
    height: 340px;
  }
  .contact-map-card {
    top: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
    padding: 16px 18px;
    gap: 12px;
  }
  .contact-map-card-icon {
    width: 38px;
    height: 38px;
  }
  .contact-map-card-value {
    font-size: 14.5px;
  }
}

/* Extra-small screens (iPhone SE 1st gen, Galaxy Fold folded) — 320–380px.
   Dodatno stiskanje da bi email stao u jedan red i da kartice ne izgledaju
   prenatrpano. Ikona i tekst još manji, arrow potpuno sakriven jer nema mjesta. */
@media (max-width: 380px) {
  .contact-quick {
    padding: 48px 12px 24px;
  }
  .contact-quick-card {
    padding: 16px 14px;
    gap: 10px;
  }
  .contact-quick-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .contact-quick-icon svg {
    width: 20px;
    height: 20px;
  }
  .contact-quick-label {
    font-size: 10px;
    letter-spacing: 0.7px;
  }
  .contact-quick-value {
    font-size: 13.5px;
  }
  .contact-quick-value.secondary {
    font-size: 12px;
  }
  .contact-quick-arrow {
    display: none;
  }
  .contact-map-card {
    padding: 14px 16px;
  }
  .contact-map-card-icon {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-quick-card,
  .contact-hours-dot {
    animation: none;
  }
  .contact-quick-card:hover,
  .contact-form-submit:hover,
  .contact-social-icons .social-link:hover {
    transform: none;
  }
}

/* ============================================================
 * BLOG LIST — premium blog/portfolio archive template.
 *
 * Koristi se za sve blog-like arhive: /nasi-radovi, /novosti, itd.
 * (bilo koja arhiva koja nije shops ili services).
 *
 * Hero je pokriven shared PAGE HERO blokom (unified).
 * Ovde: intro, card grid, pagination.
 * ============================================================ */

/* ----- 2. Intro ----- */
.blog-list-intro {
  padding: 60px 20px 20px;
}

.blog-list-intro-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-system);
  font-size: 17px;
  line-height: 1.75;
  color: #3a3a3a;
}

.blog-list-intro-inner h2,
.blog-list-intro-inner h3 {
  font-family: var(--font-system);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.blog-list-intro-inner p {
  margin: 0 0 12px;
}
.blog-list-intro-inner p:last-child { margin-bottom: 0; }

/* ----- 3. Grid ----- */
.blog-list-grid-wrapper {
  padding: 40px 20px 100px;
}

.blog-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 24px;
}

.blog-list-empty {
  text-align: center;
  padding: 80px 20px;
  color: #888;
  font-family: var(--font-system);
}

.blog-list-empty svg {
  color: rgba(200, 150, 62, 0.4);
  margin: 0 auto 16px;
  display: block;
}

.blog-list-empty p {
  margin: 0;
  font-size: 16px;
}

/* Card */
.blog-list-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.3s ease;
  animation: cardFadeIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(var(--card-index, 0) * 80ms);
}

.blog-list-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 150, 62, 0.3);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(200, 150, 62, 0.18);
}

.blog-list-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
}

/* Media */
.blog-list-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.blog-list-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-list-card:hover .blog-list-card-media img {
  transform: scale(1.08);
}

.blog-list-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 40%,
    rgba(0, 0, 0, 0.15) 70%,
    rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.blog-list-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200, 150, 62, 0.4);
}

/* Date badge — glass pill u donjem lijevom uglu slike */
.blog-list-card-date {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  font-family: var(--font-system);
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.blog-list-card-date svg {
  color: var(--gold, #c8963e);
}

.blog-list-card:hover .blog-list-card-date {
  transform: translateY(-2px);
  background: var(--gold, #c8963e);
  color: #0a0a0a;
}

.blog-list-card:hover .blog-list-card-date svg {
  color: #0a0a0a;
}

/* Body */
.blog-list-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 24px 24px;
  gap: 10px;
}

.blog-list-card-category {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-system);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold, #c8963e);
}

.blog-list-card-category-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold, #c8963e);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.18);
}

.blog-list-card-title {
  font-family: var(--font-system);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  margin: 0;
  transition: color 0.25s ease;
}

.blog-list-card:hover .blog-list-card-title {
  color: var(--gold, #c8963e);
}

.blog-list-card-excerpt {
  flex-grow: 1;
  font-family: var(--font-system);
  font-size: 14px;
  line-height: 1.65;
  color: #5a5a5a;
  margin: 0;
}

.blog-list-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--font-system);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: color 0.25s ease, gap 0.3s ease;
}

.blog-list-card-cta svg {
  transition: transform 0.3s ease;
}

.blog-list-card:hover .blog-list-card-cta {
  color: var(--gold, #c8963e);
  gap: 12px;
}

.blog-list-card:hover .blog-list-card-cta svg {
  transform: translateX(4px);
}

/* ============================================================
 * Fix nenamjernih dekorativnih linija izazvanih globalnim `span::before`.
 *
 * Globalni `span::before` selektor (linija 380 u ovom fajlu) dodaje
 * zlatnu horizontalnu liniju (40px × 2px) pred svakim `<span>` na sajtu.
 * To je legacy anti-pattern — originalno trebao da važi za `.title span`,
 * ali je završio kao global scope. Elementi koji su ugniježdeni spanovi
 * ili su sami spanovi dobijaju neželjene linije.
 *
 * Opt-out za:
 *   1. CTA kontejnere — `.blog-list-card-cta`, `.services-list-card-cta`,
 *      `.gallery-read-more` (ugniježdeni `<span>` za tekst "Read more")
 *   2. Eyebrow kategorije na listing karticama (ima vlastitu tačku/dot)
 *   3. Breadcrumb separatore (›) i "current" labele u hero-u
 *   4. Sidebar stavke (Sve usluge) — bullet + naziv
 * ============================================================ */
.blog-list-card-cta > span::before,
.services-list-card-cta > span::before,
.gallery-read-more > span::before,
.blog-list-card-category::before,
.blog-list-card-category-dot::before,
.page-hero-breadcrumb span::before,
.service-breadcrumb span::before,
.service-list-bullet::before,
.service-list-name::before {
  display: none;
}

/* Sidebar "Sve usluge" — trenutno otvorena stavka je uvučena da se vizuelno
 * odvoji od ostalih (plus postojeći border/gradient background). Ostale
 * stavke su flush lijevo bez crtica (vidi pravilo iznad). */
.service-list-item.current {
  margin-left: 14px;
}
@media (max-width: 991px) {
  .service-list-item.current {
    margin-left: 10px;
  }
}

/* ----- 4. Pagination ----- */
.blog-list-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.blog-list-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  font-family: var(--font-system);
  font-size: 14px;
  font-weight: 600;
  color: #3a3a3a;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-list-page-link:hover {
  background: rgba(200, 150, 62, 0.06);
  border-color: rgba(200, 150, 62, 0.3);
  color: var(--gold, #c8963e);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(200, 150, 62, 0.15);
}

.blog-list-page-link.active {
  background: linear-gradient(135deg, var(--gold, #c8963e) 0%, #b8862e 100%);
  color: #0a0a0a;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(200, 150, 62, 0.35);
  cursor: default;
}

.blog-list-page-link.active:hover {
  transform: none;
}

.blog-list-page-link.arrow {
  padding: 0;
}

.blog-list-page-link.arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: transparent;
  border-color: rgba(0, 0, 0, 0.06);
}

/* ----- Responsive ----- */
@media (min-width: 768px) {
  .blog-list-intro {
    padding: 80px 24px 30px;
  }
  .blog-list-intro-inner {
    font-size: 18px;
  }
  .blog-list-grid-wrapper {
    padding: 50px 24px 120px;
  }
  .blog-list-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
    gap: 28px;
  }
  .blog-list-card-body {
    padding: 24px 26px 26px;
  }
}

@media (min-width: 1024px) {
  .blog-list-intro {
    padding: 90px 24px 30px;
  }
  .blog-list-grid-wrapper {
    padding: 60px 24px 140px;
  }
  .blog-list-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 440px));
    gap: 32px;
  }
  .blog-list-card-body {
    padding: 26px 28px 28px;
  }
  .blog-list-card-title {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .blog-list-intro {
    padding: 40px 16px 14px;
  }
  .blog-list-intro-inner {
    font-size: 15px;
  }
  .blog-list-grid-wrapper {
    padding: 28px 14px 60px;
  }
  .blog-list-grid {
    gap: 18px;
  }
  .blog-list-card-body {
    padding: 20px 20px 22px;
  }
  .blog-list-card-title {
    font-size: 18.5px;
  }
  .blog-list-card-excerpt {
    font-size: 13.5px;
  }
  .blog-list-pagination {
    margin-top: 40px;
    gap: 6px;
  }
  .blog-list-page-link {
    min-width: 40px;
    height: 40px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-list-card {
    animation: none;
  }
  .blog-list-card:hover {
    transform: none;
  }
  .blog-list-card:hover .blog-list-card-media img {
    transform: none;
  }
  .blog-list-page-link:hover {
    transform: none;
  }
}

/* ============================================================
 * BLOG DETAILS — premium post/gallery page template.
 *
 * Koristi se na /{archive}/{post} stranicama (template news/detail.php).
 * Layout: čist, galerija-centričan. Bez share/nav dugmadi.
 * Hero je zaseban shared partial (page-hero).
 * ============================================================ */

.blog-details-wrapper {
  padding: 48px 20px 90px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-details-text {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--font-system);
  font-size: 17px;
  line-height: 1.85;
  color: #3a3a3a;
}

.blog-details-text:empty { display: none; }

.blog-details-text h2,
.blog-details-text h3 {
  font-family: var(--font-system);
  color: #1a1a1a;
  letter-spacing: -0.3px;
  margin: 32px 0 14px;
}

.blog-details-text h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 700; }
.blog-details-text h3 { font-size: clamp(19px, 2.4vw, 23px); font-weight: 600; }
.blog-details-text p  { margin: 0 0 18px; }
.blog-details-text p:last-child { margin-bottom: 0; }

/* ----- Premium gallery grid ----- */
.blog-details-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.blog-details-gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: #f2f2f2;
  cursor: zoom-in;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
}

.blog-details-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 55%,
    rgba(0, 0, 0, 0.25) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.blog-details-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-details-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.14),
    0 2px 6px rgba(0, 0, 0, 0.06);
}

.blog-details-gallery-item:hover img { transform: scale(1.07); }
.blog-details-gallery-item:hover::after { opacity: 1; }

.blog-details-gallery-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transform: scale(0.6) translateY(6px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.blog-details-gallery-item:hover .blog-details-gallery-zoom,
.blog-details-gallery-item:focus-visible .blog-details-gallery-zoom {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.blog-details-gallery-item:focus-visible {
  outline: 2px solid var(--gold, #c8963e);
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .blog-details-wrapper { padding: 60px 24px 110px; gap: 50px; }
  .blog-details-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .blog-details-wrapper { padding: 80px 24px 140px; gap: 60px; }
  .blog-details-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

@media (min-width: 1400px) {
  .blog-details-gallery { gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .blog-details-gallery-item,
  .blog-details-gallery-item img,
  .blog-details-gallery-zoom {
    transition: none;
  }
  .blog-details-gallery-item:hover { transform: none; }
  .blog-details-gallery-item:hover img { transform: none; }
}

/* ============================================================
 * CMS PAGE — legal/info pages (About, Privacy, Cookies, general).
 *
 * View: app/views/pages/general.php (i include-uju je privacy.php,
 * cookies.php, about.php).
 *
 * Premium article/prose layout: centriran max-width-820px wrapper,
 * Lora serif za body, Montserrat za headinge, hijerarhija h2/h3/h4
 * sa zlatnim akcentom, fini razmaci između sekcija.
 * ============================================================ */

.cms-page-wrapper {
  padding: 50px 20px 90px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cms-page-wrapper > .cms-content,
.cms-page-wrapper > .blog-details-gallery {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.cms-page-wrapper > .blog-details-gallery {
  max-width: 100%;
}

/* ----- Typography for CMS HTML content (TinyMCE output) ----- */
.cms-content {
  font-family: var(--font-system);
  font-size: 17px;
  line-height: 1.85;
  color: #3a3a3a;
  word-break: break-word;
}

.cms-content > :first-child { margin-top: 0; }
.cms-content > :last-child  { margin-bottom: 0; }

.cms-content h1,
.cms-content h2,
.cms-content h3,
.cms-content h4,
.cms-content h5,
.cms-content h6 {
  font-family: var(--font-system);
  color: #1a1a1a;
  letter-spacing: -0.3px;
  line-height: 1.3;
  font-weight: 700;
  margin: 2em 0 0.6em;
  position: relative;
}

.cms-content h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(200, 150, 62, 0.2);
}

.cms-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, rgba(200, 150, 62, 1) 0%, rgba(200, 150, 62, 0.3) 100%);
  border-radius: 2px;
}

.cms-content h3 {
  font-size: clamp(20px, 2.6vw, 24px);
  font-weight: 600;
  color: var(--gold, #c8963e);
}

.cms-content h4 {
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 600;
  color: #2a2a2a;
}

.cms-content h5 { font-size: 17px; font-weight: 600; }
.cms-content h6 { font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; color: #5a5a5a; }

.cms-content p {
  margin: 0 0 18px;
}

.cms-content strong, .cms-content b {
  font-weight: 700;
  color: #1a1a1a;
}

.cms-content em, .cms-content i { font-style: italic; }

.cms-content a {
  color: var(--gold, #c8963e);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cms-content a:hover {
  color: #b8862e;
  text-decoration-thickness: 2px;
}

.cms-content ul,
.cms-content ol {
  margin: 0 0 20px;
  padding-left: 26px;
}

.cms-content ul { list-style: disc; }
.cms-content ol { list-style: decimal; }

.cms-content li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.cms-content ul li::marker { color: var(--gold, #c8963e); }
.cms-content ol li::marker { color: var(--gold, #c8963e); font-weight: 600; }

.cms-content blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  border-left: 3px solid var(--gold, #c8963e);
  background: rgba(200, 150, 62, 0.05);
  font-style: italic;
  color: #2a2a2a;
  border-radius: 0 10px 10px 0;
}

.cms-content blockquote > :last-child { margin-bottom: 0; }

.cms-content hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 150, 62, 0.35), transparent);
  margin: 36px 0;
}

.cms-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 24px auto;
}

.cms-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

.cms-content th,
.cms-content td {
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.cms-content th {
  background: rgba(200, 150, 62, 0.08);
  font-weight: 600;
  color: #1a1a1a;
  font-family: var(--font-system);
  font-size: 14px;
}

.cms-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  padding: 2px 6px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  color: #b8862e;
}

/* Secondary text stands visually apart (after the gallery block) */
.cms-content-secondary {
  padding-top: 28px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

@media (min-width: 640px) {
  .cms-page-wrapper { padding: 70px 24px 110px; gap: 50px; }
}

@media (min-width: 1024px) {
  .cms-page-wrapper { padding: 90px 24px 140px; gap: 60px; }
  .cms-content { font-size: 18px; line-height: 1.9; }
}

@media (max-width: 575px) {
  .cms-page-wrapper { padding: 36px 16px 60px; gap: 30px; }
  .cms-content { font-size: 15.5px; line-height: 1.75; }
  .cms-content h2 { padding-bottom: 10px; }
  .cms-content h2::after { width: 44px; height: 2px; }
  .cms-content blockquote { padding: 14px 18px; }
}
