
@font-face {
  font-family: selna;
  src: url(../Selna-Font/Selna\ Regular.otf);
}

@font-face {
  font-family: allura;
  src: url(../Allura/Allura-Regular.ttf);
}

/* GLOBALNI CSS STILOVI */

:root {
  /* BOJE */
  --color-gold-primary: #c5a059;
  --color-gold-light: #e5cfa0;
  --color-black-rich: #121212;
  --color-charcoal: #2c2c2c;
  --color-cream: #f9f8f4;
  --color-white: #ffffff;
  --color-text-main: #333333;
  --color-text-light: #777777;
  --color-olive-brown: rgb(132, 119, 84);

  /* TIPOGRAFIJA */
  --font-heading:  "Selna", "Noto Serif", "Times New Roman", serif;
  --font-body: "Montserrat", sans-serif;

  /* VELIčINE */
  --size-h1: 3.7rem;
  --size-h2: 3rem;
  --size-h3: 1.75rem;
  --size-body: 1rem;
  --size-nav: 0.85rem;

  /* RAZMACI */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* UI ELEMENTI */
  --border-radius-sm: 4px;
  --container-width: 1280px;
  --header-height: 70px;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

html.nav-locked,
body.nav-locked {
  overflow: hidden;
}

/* Selection color aligned with brand palette */
::selection {
  background: var(--color-gold-primary);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--color-gold-primary);
  color: var(--color-white);
}

/* Scrollbar Stilovi */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-cream);
  border-left: 1px solid #e0e0e0;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #c5a059 0%, #a88545 100%);
  border-radius: 6px;
  border: 2px solid var(--color-cream);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d4b06a 0%, #b89555 100%);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3), 0 0 8px rgba(197, 160, 89, 0.3);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #a88545 0%, #8a6a34 100%);
}

/* Firefox Scrollbar */
* {
  scrollbar-color: #c5a059 var(--color-cream);
  scrollbar-width: thin;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.img {
  position: relative;
}
.img img {
  border-radius: 4px;
  overflow: hidden;
  border-bottom-right-radius: 60% 70%;
  border-bottom: 3px solid var(--color-gold-primary);
}
.img picture img {
  width: 100%;
  display: block;
}
.img picture {
  position: relative;
  z-index: 1;
}
.img picture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--color-olive-brown);
  border-bottom-right-radius: 60% 30%;
  box-shadow: inset  -3px -3px 13px rgb(0, 0, 0);
  border-bottom: 5px solid var(--color-gold-primary);
  z-index: -1;
}
.img picture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--color-olive-brown);
  border-bottom-right-radius: 60% 10%;
  box-shadow: inset  -3px -3px 13px rgb(0, 0, 0);
  border-bottom: 5px solid var(--color-gold-primary);
  z-index: -2;
}
.experience-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--color-gold-primary);
  padding: 30px;
  color: white;
  z-index: 2;
  box-shadow: 4px 4px 11px black;
}

.experience-years {
  font-size: 3rem;
  display: block;
  font-family: var(--font-heading);
}

.experience-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-black-rich);
  font-weight: 400;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* POMOÄ†NE KLASE */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  background-color: var(--color-black-rich);
  color: var(--color-gold-primary);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.7rem;
  border: 1px solid var(--color-black-rich);
  cursor: pointer;
  text-align: center;
  transition: all 0.5s ease;
}

.btn:hover {
  background-color: transparent;
  color: var(--color-black-rich);
}

.btn-gold {
  background-color: var(--color-gold-primary);
  color: var(--color-white);
  border-color: var(--color-gold-primary);
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--color-gold-primary);
}

.section-padding {
  padding: 4.8rem 0;
}
.btn-transparent {
  width: 211px;
  background: transparent;
  color: var(--color-gold-primary);
  border: var(--color-gold-primary) solid 1px;
  backdrop-filter: blur(10px);
}
.btn-transparent:hover {
  background: var(--color-black-rich);
  color: var(--color-gold-primary);
  border: var(--color-black-rich) solid 1px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.align-start {
  align-items: flex-start;
}
.text-muted {
  color: var(--color-text-light);
}
.mt-20 {
  margin-top: 20px;
}
.text-gold {
  color: var(--color-gold-primary);
  font-size: 1.25rem;
  font-family: allura;
letter-spacing: 1px;
}
.eyebrow {
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.eyebrow-sm {
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.bg-white {
  background-color: var(--color-white);
}

.bg-cream {
  background-color: var(--color-cream);
}

.hero-cta {
  margin-top: 20px;
}

.btn-gap {
  margin-right: 15px;
}

.rounded-img {
  width: 100%;
  border-radius: var(--border-radius-sm);
}

.section-heading {
  margin-bottom: 30px;
}

.heading-gold {
  color: var(--color-gold-primary);
}

.contact-block {
  margin-bottom: 30px;
}

.contact-block h4 {
  color: var(--color-gold-primary);
  margin-bottom: 10px;
}

.contact-block p {
  color: var(--color-text-light);
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  overflow: hidden;
}

.contact-card {
  background: var(--color-white);
  padding: 40px;
  border: 1px solid #eee;
}
.contact-card img {
  height: 100%;
  object-fit: cover;
}
.form-label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.celebration-copy {
  text-align: left;
  padding-left: var(--spacing-md);
}

.celebration-copy-right {
  padding-right: var(--spacing-md);
  padding-left: 0;
}

.celebration-copy p {
  margin-bottom: 20px;
  color: var(--color-text-light);
}

.celebration-copy p:last-of-type {
  margin-bottom: 30px;
}

.celebration-subheading {
  margin-bottom: 15px;
}

.celebration-list {
  margin-bottom: 30px;
  color: var(--color-text-light);
}

.celebration-list li {
  margin-bottom: 10px;
}

.section-dark {
  background-color: var(--color-black-rich);
  color: var(--color-white);
}

.private-lead {
  max-width: 700px;
  margin: 0 0 50px 0;
  color: #ccc;
}

.private-card {
  border: 1px solid #333;
  padding: 20px;
}

.private-card h3 {
  font-size: 1.2rem;
  color: var(--color-white);
}

.private-card p {
  font-size: 0.9rem;
  color: #888;
  margin-top: 10px;
}

/* HEADER & NAVIGACIJA */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo img {
  height: 30px;
}

.nav-menu {
  display: flex;
}

.nav-menu ul {
  display: flex;
  gap: 1.5rem;
}

.nav-menu a {
  font-size: var(--size-nav);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--color-charcoal);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-gold-primary);
}

.mobile-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(var(--color-black-rich) 0 0) center 50% / 24px 2px no-repeat;
  color: transparent;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-size 0.35s ease;
}

.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--color-black-rich);
  border-radius: 2px;
  transition: transform 0.35s ease, top 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}

.mobile-toggle::before {
  top: 15px;
}

.mobile-toggle::after {
  top: 25px;
}

.mobile-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-color: #dedede;
}

.mobile-toggle.open {
  background-size: 0;
}

.mobile-toggle.open::before {
  top: 21px;
  transform: rotate(45deg);
}

.mobile-toggle.open::after {
  top: 21px;
  transform: rotate(-45deg);
}

.nav-menu {
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease;
}

/* GRID LAYOUTS */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

/* Equal height columns helper */
.grid-2.equal-height {
  align-items: stretch;
}

.equal-height .contact-card,
.equal-height .text-left {
  height: 100%;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

/* HERO */
.hero {
  position: relative;
  height: 86vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin-top: var(--header-height);
  overflow: hidden;
  background-color: var(--color-olive-brown);
  border-bottom-right-radius: 60% 10%;
  box-shadow: inset  -3px -3px 13px rgb(0, 0, 0);
  border-bottom: 5px solid var(--color-gold-primary);
}
.hero-left {
  justify-content: flex-start;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-bottom-right-radius: 60% 40%;
  box-shadow: inset  -3px -3px 13px rgb(0, 0, 0);
  border-bottom: 5px solid var(--color-gold-primary);
}
.hero-bg::before {
  content: "";
  position: absolute;
  background: transparent;
  width: 100%;
  height: 100%;
  border-right: #121212 solid 2px;
  box-shadow: inset -5px -5px 13px rgb(0, 0, 0);
  border-bottom-right-radius: 60% 80%;
  z-index: 6;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  border-bottom-right-radius: 60% 80%;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1000px;
  margin-left: 0;
  padding-left: 10%;
}
.pretitle {
  font-size: 1.8rem;
}
.hero h1 {
  font-size: var(--size-h1);
  color: var(--color-gold-primary);
  margin-bottom: var(--spacing-sm);
}
.hero p {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  font-weight: 300;
  letter-spacing: 1px;
}
.hero  .promocija{
  position: absolute;
  bottom: 4%;
  z-index: 2;
  width: 100%;
  text-align: left;
  max-width: 1000px;
  margin-left: 0;
  padding: 0;
  padding-left: 10%;
}
.hero .popust {
  width: 100%;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
}

/* SECTOR SERVICE */

.service-item {
  border-radius: 8px;
    border-bottom: 2px solid var(--color-gold-primary);
  background: transparent;
  box-shadow: inset 0 -2px 10px rgba(200, 149, 48, 0.2);
  border-bottom-right-radius: 60% 10%;
  position: relative;
  height: 470px;
  z-index: 2;
}
.service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
    border-bottom: 2px solid var(--color-gold-primary);
  background: transparent;
  box-shadow: inset 0 -2px 10px rgba(200, 149, 48, 0.2);
  border-bottom-right-radius: 60% 20%;
  z-index: -1;
}
.service-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
    border-bottom: 2px solid var(--color-gold-primary);
  background: transparent;
  box-shadow: inset 0 -2px 10px rgba(200, 149, 48, 0.2);
  border-bottom-right-radius: 60% 30%;
  z-index: -1;
}
.service-item picture {
  display: block;
  margin-bottom: 20px;
}
.service-item picture img {
  height: 250px;
  overflow: hidden;
  object-fit: cover;
  width: 100%;
}
.service-item h3, .service-item p, .service-item a {
  padding: 0 15px;
}
.service-item p {
  max-width: 80%;
}
.service-link {
  position: absolute;
  left: 0;
  bottom: 15px;
}

/* STRANICE HEADER */
.page-header {
  padding: 150px 0 80px 0;
  color: white;
  text-align: left;
  margin-top: var(--header-height);
  position: relative;
  overflow: hidden;
  height: 350px;
}
.page-header .container {
  padding-left: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--color-gold-primary);
}
.page-hero {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.page-hero img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.25);
}
.page-lead {
  max-width: 600px;
  margin: 0;
  color: #ccc;
}

/* CENE KARTICE */
.price-card {
  background: var(--color-white);
  padding: var(--spacing-md);
  border: 1px solid #eee;
  text-align: left;
  transition: transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.price-card:hover {
  border-color: var(--color-gold-primary);
  transform: translateY(-5px);
}
.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}
.price {
  font-size: 2.5rem;
  color: #771313;
  font-family: var(--font-heading);
  margin: var(--spacing-md) 0;
}
.price-compact {
  font-size: 2rem;
}
.price-subtext {
  color: #999;
  font-size: 0.9rem;
}

.price-unit {
  font-size: 1rem;
  color: #333;
}

.price-unit-sm {
  font-size: 0.8rem;
  color: #777;
}

.price-card.featured {
  border: 2px solid var(--color-gold-primary);
  transform: scale(1.05);
  position: relative;
  z-index: 2;
}

.price-card.highlight {
  border: 2px solid var(--color-gold-primary);
}

.price-card.has-badge .price-header {
  margin-top: 20px;
}

.price-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-gold-primary);
  color: white;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 5px 0;
  font-weight: bold;
  text-align: center;
}
.price-list {
  text-align: left;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}
.price-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.price-title {
  margin-bottom: 10px;
}

/* FORME */
/* .form-group {
  margin-bottom: 20px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
} */

/* DETALJAN CENOVNIK STILOVI */
.menu-section {
  padding: var(--spacing-md) 0;
}

.menu-category-title {
  text-align: left;
  margin-bottom: 20px;
  color: var(--color-gold-primary);
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  display: inline-block;
  font-weight: bold;
  font-size: 1.5rem;
}

.menu-category-wrapper {
  text-align: left;
  margin-bottom: 20px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.menu-item {
  margin-bottom: 20px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}

.menu-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-black-rich);
  background: var(--color-cream);
  padding-right: 10px;
  z-index: 1;
}

.menu-dots {
  flex-grow: 1;
  border-bottom: 1px dotted #aaa;
  position: relative;
  top: -5px;
}

.menu-price {
  font-weight: 600;
  color: #6B0F2A;
  background: var(--color-cream);
  padding-left: 10px;
  z-index: 1;
}

.menu-desc {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
}



.menu-note {
  margin-top: 60px;
  text-align: left;
}

.link-gold-underline {
  text-decoration: underline;
  color: var(--color-gold-primary);
}

/* NOVE SEKCIJE NA POčETNOJ */
.philosophy-intro {
  max-width: 800px;
  margin: 0 0 60px 0;
  text-align: left;
}

.philosophy-intro p {
  color: var(--color-text-light);
  margin-top: 20px;
}

.about-section h2 {
  margin-bottom: 30px;
}

.about-section p {
  margin-bottom: 20px;
  color: var(--color-text-light);
}

.about-section ul {
  margin-bottom: 30px;
  color: var(--color-text-light);
}

.about-section ul li {
  margin-bottom: 10px;
}

.tick-list {
  margin-bottom: 30px;
  color: var(--color-text-light);
}

.tick-list li {
  padding: 5px 0;
}

.stats-row {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.stats-number {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--color-gold-primary);
  display: block;
}

.stats-label {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.about-image img {
  width: 100%;
}

/* VIDEO SEKCIJA */
.video-section {
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(245, 241, 234, 0.5) 100%);
}

.video-section .section-header {
  text-align: left;
  margin-bottom: 50px;
}

.video-section .section-header h2 {
  margin-bottom: 15px;
}

.video-section .section-header p {
  color: var(--color-text-light);
  max-width: 600px;
}

.video-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 3%;
  border-radius: 6px;
  border: solid 1px grey;
  background: var(--color-black-rich);
}

.video-wrapper {
  position: relative;
  width: 100%;
  background: var(--color-black-rich);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  aspect-ratio: 16 / 9;
  max-width: 1000px;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-play-btn:hover svg circle {
  opacity: 1;
}

.video-play-btn svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.feature-box {
  text-align: left;
  padding: 30px;
  background: white;
  border: 1px solid #ddd8d5;
  transition: all 0.3s ease;
}

.feature-box p {
  color: #777;
  margin-top: 15px;
}

/* Pricing Box Styles */
.pricing-box {
  border: 2px solid var(--color-gold-primary);
  padding: 2rem;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border-bottom-right-radius: 60% 20%;
  box-shadow: inset 0 -2px 10px rgba(200, 149, 48, 0.2);
  z-index: 2;
  background: var(--color-cream);
}
.pricing-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
    border-bottom: 2px solid var(--color-gold-primary);
  background: transparent;
  box-shadow: inset 0 -2px 10px rgba(200, 149, 48, 0.2);
  border-bottom-right-radius: 60% 40%;
  z-index: -1;
}
.pricing-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
    border-bottom: 2px solid var(--color-gold-primary);
  background: transparent;
  box-shadow: inset 0 -2px 10px rgba(200, 149, 48, 0.2);
  border-bottom-right-radius: 60% 60%;
  z-index: 2;
}

.pricing-title {
  margin-bottom: 1rem;
}
.pricing-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #6B0F2A;
  margin-bottom: 1.5rem;
}
.pricing-amount-unit {
  font-size: 1rem;
  font-weight: 400;
}

.section-title {
  margin-bottom: 50px;
}

.why-card {
  text-align: left;
}

.why-icon {
  font-size: 3rem;
  color: var(--color-gold-primary);
  margin-bottom: 20px;
}

.why-text {
  color: #777;
  margin-top: 15px;
}

.services-section {
  background-color: var(--color-cream);
}

/* Show services in two columns on wide screens */
.services-section .grid-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-header {
  margin-bottom: 60px;
  text-align: left;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  color: var(--color-text-light);
}

.section-header2 h2 {
  margin-bottom: 15px;
}

.section-header2 p {
  color: var(--color-text-light);
}
.section-padding2 {
  padding-top: 4.8rem;
}
.service-item p {
  color: #777;
  margin: 15px 0;
}

.service-item a {
  color: var(--color-gold-primary);
  font-weight: 600;
}

.feature-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.featured-packages-section {
  background-color: var(--color-white);
}

.featured-packages-section .section-header {
  margin-bottom: 50px;
  text-align: left;
}

.featured-packages-section .section-header h2 {
  margin-bottom: 15px;
}

.featured-packages-section .section-header p {
  color: var(--color-text-light);
  max-width: 500px;
  margin: 0;
  text-align: left;
}

.featured-packages-section .price-card {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--color-gold-primary);
  margin-bottom: 20px;
  display: block;

}

.feature-box:first-child .feature-icon {
  font-size: 0;
}

.feature-box:first-child .star-path {
  width: 60px;
  height: 60px;
  background: var(--color-gold-primary);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 15px;
}

.process-step {
  text-align: left;
  position: relative;
  padding-left: 15px;
}

.process-section {
  background-color: var(--color-black-rich);
  color: white;
}

.process-header {
  margin-bottom: 60px;
  text-align: left;
}

.process-header h2 {
  color: var(--color-gold-primary);
}

.process-header p {
  color: #999;
}

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

.step-number {
  font-size: 4rem;
  font-family: var(--font-heading);
  color: rgba(197, 160, 89, 0.2);
  position: absolute;
  top: -30px;
  left: 0;
  transform: none;
  z-index: 0;
}

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

.process-step h4 {
  color: white;
  margin-bottom: 10px;
}

.process-step p {
  color: #999;
  font-size: 0.9rem;
}

.process-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--color-gold-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.process-number {
  font-size: 3rem;
  font-family: var(--font-heading);
  color: var(--color-gold-primary);
  font-weight: bold;
  margin-bottom: 15px;
}

.process-card h3 {
  color: var(--color-black-rich);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.process-card p {
  color: #666;
  line-height: 1.6;
}

/* GALERIJA I LIGHTBOX */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
}

.gallery-header {
  margin-bottom: 50px;
  text-align: left;
}

.gallery-preview {
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 250px;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.zoom-icon {
  color: white;
  font-size: 2rem;
}

/* LIGHTBOX MODAL */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--color-gold-primary);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 3rem;
  cursor: pointer;
  padding: 20px;
  user-select: none;
  z-index: 2001;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  color: var(--color-gold-primary);
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-bg-image picture,
.cta-bg-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.trust-badges-section {
  background: var(--color-cream);
  padding: 40px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.15);
}

.badge-icon {
  font-size: 2.5rem;
  color: var(--color-gold-primary);
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 50%;
}

.badge-content {
  text-align: left;
}

.badge-content h4 {
  color: var(--color-black-rich);
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.badge-content p {
  color: var(--color-text-light);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.stats-section {
  background: linear-gradient(135deg, var(--color-black-rich) 0%, #1a1a1a 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image moved to HTML */
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.stats-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}

.stats-bg-image picture {
  width: 100%;
  height: 100%;
  display: block;
}

.stats-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-icon {
  font-size: 3rem;
  color: var(--color-gold-primary);
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
  transform: translateX(-6px);
}

.stat-number {
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--color-gold-primary);
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-plus {
  font-size: 3rem;
  color: var(--color-gold-primary);
  display: inline-block;
  margin-left: 5px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
  color: #ccc;
  font-weight: 600;
}
 /* TESTIMONIAL  */
.testimonials-section {
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(245, 241, 234, 0.5) 100%);
}

.testimonials-section .section-header {
  text-align: left;
  margin-bottom: 50px;
}

.testimonials-section .section-header h2 {
  margin-bottom: 15px;
}

.testimonials-section .section-header p {
  color: var(--color-text-light);
  max-width: 600px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--color-white);
  padding: 30px;
  border-radius: 8px;
  border-bottom: 2px solid var(--color-gold-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom-right-radius: 60% 10%;
  box-shadow: inset 0 -2px 10px rgba(200, 149, 48, 0.2);
  z-index: 2;
}
.testimonial-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
    border-bottom: 2px solid var(--color-gold-primary);
  background: transparent;
  box-shadow: inset 0 -2px 10px rgba(200, 149, 48, 0.2);
  border-bottom-right-radius: 60% 20%;
  z-index: -1;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
    border-bottom: 2px solid var(--color-gold-primary);
  background: transparent;
  box-shadow: inset 0 -2px 10px rgba(200, 149, 48, 0.2);
  border-bottom-right-radius: 60% 30%;
  z-index: 2;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 -2px 10px rgba(200, 149, 48, 0.2),
  0 8px 25px rgba(197, 160, 89, 0.15);
}

.testimonial-stars {
  color: var(--color-gold-primary);
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
}

.testimonial-author h4 {
  color: var(--color-black-rich);
  margin-bottom: 5px;
  font-size: 1rem;
}

.testimonial-author p {
  color: var(--color-gold-primary);
  font-size: 0.85rem;
  margin: 0;
}

.faq-section {
  background-color: var(--color-white);
}

.faq-section .section-header {
  text-align: left;
  margin-bottom: 50px;
}

.faq-section .section-header h2 {
  margin-bottom: 15px;
}

.faq-section .section-header p {
  color: var(--color-text-light);
  max-width: 600px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-gold-primary);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.15);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: var(--color-cream);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-black-rich);
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(197, 160, 89, 0.08);
  color: var(--color-gold-primary);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--color-gold-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--color-white);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
  border-top: 1px solid #e0e0e0;
}

.faq-answer p {
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.8;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: left;
}

.cta-content h2 {
  color: var(--color-gold-primary);
  margin-bottom: 20px;
}

.cta-content p {
  max-width: 600px;
  margin: 0 0 30px 0;
  font-size: 1.2rem;
}

footer {
  background-color: var(--color-black-rich);
  color: var(--color-white);
  padding: var(--spacing-lg) 0 100px 0;
}

footer h4 {
  color: var(--color-gold-primary);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

footer p {
  color: #999;
  font-size: 0.9rem;
}

footer a {
  color: var(--color-gold-primary);
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.8rem;
  color: #999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.designer-credit {
  color: var(--color-gold-primary);
  text-decoration: none;
  transition: transform 0.3s ease;
  display: inline-block;
}

.designer-credit:hover {
  transform: scale(1.1);
}

/* Footer grid & legal links */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-legal-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal-list a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-legal-list a:hover {
  color: var(--color-gold-primary);
  transform: translateY(-1px);
}

/* Responsive footer grid */
@media (max-width: 1030px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Footer social links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  color: var(--color-gold-primary);
  transition: all 0.3s ease;
}

.social-links a:hover {
  opacity: 0.7;
  transform: translateY(-3px);
}
.designed11 span {
  font-family: allura;
  font-size: 1.3rem;
  color: var(--color-gold-primary);
}
.website-napravio {
  color: turquoise;
}

/* FLOATING ACTION BUTTONS */
.floating-btn {
  position: fixed;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: var(--color-gold-primary);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  bottom: 30px;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(197, 160, 89, 0.4);
}

.floating-btn.visible {
  opacity: 1;
  visibility: visible;
}

.call-btn {
  right: 30px;
}

.music-btn {
  left: 30px;
}

.music-btn.playing {
  background: var(--color-black-rich);
  fill: var(--color-gold-primary);
}

/* Sekcija sa ponudama */
.offers-wrapper {
  padding: 40px;
}

.offers-grid {
  gap: 40px;
  align-items: stretch;
}

.offers-grid > div {
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  padding: 30px;
  border-radius: 8px;
  border-left: 1px solid var(--color-gold-primary);
  position: relative;
  z-index: 1;
  border-bottom-right-radius: 60% 5%;
  box-shadow: inset 0 -2px 10px rgba(200, 149, 48, 0.2);
  border-bottom: 2px solid var(--color-gold-primary);
  isolation: isolate;
}
.offers-grid > div::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
    border-bottom: 2px solid var(--color-gold-primary);
  background: transparent;
  box-shadow: inset 0 -2px 10px rgba(200, 149, 48, 0.2);
  border-bottom-right-radius: 60% 17%;
  z-index: -1;
}
.offers-grid > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
    border-bottom: 2px solid var(--color-gold-primary);
  background: transparent;
  box-shadow: inset 0 -2px 10px rgba(200, 149, 48, 0.2);
  border-bottom-right-radius: 60% 10%;
  z-index: -1;
}

.offer-title {
  color: var(--color-gold-primary);
  margin-bottom: 20px;
  font-weight: bold;
}

.offer-description {
  color: var(--color-text-light);
  margin-bottom: 30px;
}

.offers-menu-list {
  flex: 1;
}

.offer-price {
  margin-top: 30px;
  font-size: 1.2rem;
  color: #771313;
  font-weight: bold;
  text-align: left;
}

.offer-price del {
  color: #975d5d;
  text-decoration-line: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #c5a059;
  margin-right: 15px;
  font-size: 1rem;
  opacity: 0.8;
}

.offer-price:has(del) + .offer-price {
  margin-top: 5px;
}

.offer-button-wrapper {
  margin-top: 20px;
}

/* Menu-item styling within offers */
.offers-wrapper .menu-item {
  padding: 2px 0;
  border-bottom: 1px dashed #dbdbdb;
}

.offers-wrapper .menu-item:last-child {
  border-bottom: none;
}

.offers-wrapper .menu-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  padding: 3px 15px;
}

.offers-wrapper .menu-title {
  flex: 1;
  font-size: 1rem;
  color: var(--color-text-main);
  background: var(--color-white);
}

.offers-wrapper .menu-weight {
  font-size: 1rem;
  color: var(--color-gold-primary);
  font-weight: 600;
  white-space: nowrap;
}

.offers-wrapper .menu-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 4px;
  padding-left: 15px;
}

/* POLITIKA PRIVATNOSTI */
.privacy-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
  background-color: var(--color-cream);
}

.privacy-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  border-bottom: 3px solid var(--color-gold-primary);
  padding-bottom: var(--spacing-md);
}

.privacy-header h1 {
  margin: 0;
  font-weight: 700;
}

.privacy-content {
  background-color: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
  color: var(--color-text-main);
}

.privacy-content h2 {
  color: var(--color-black-rich);
  border-bottom: 2px solid var(--color-gold-primary);
  padding-bottom: var(--spacing-sm);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
  font-size: var(--size-h3);
}

.privacy-content h3 {
  color: var(--color-charcoal);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.privacy-content p {
  margin: var(--spacing-sm) 0;
  text-align: left;
  color: var(--color-text-main);
  font-size: var(--size-body);
}

.privacy-content ul {
  margin: var(--spacing-md) 0;
  padding-left: 2rem;
  list-style: disc;
}

.privacy-content li {
  margin: var(--spacing-xs) 0;
  text-align: left;
  color: var(--color-text-main);
  font-size: var(--size-body);
}

.privacy-content strong {
  color: var(--color-black-rich);
  font-weight: 600;
}

.last-updated {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.85rem;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid #eee;
}

.nav-links {
  text-align: center;
  margin: var(--spacing-md) 0;
}

.nav-links a {
  color: var(--color-black-rich);
  text-decoration: none;
  margin: 0 var(--spacing-md);
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: var(--size-body);
}

.nav-links a:hover {
  color: var(--color-gold-primary);
}

/* RESPONSIVE - POLITIKA PRIVATNOSTI */
@media (max-width: 768px) {
  .privacy-container {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .privacy-header h1 {
    font-size: 2.5rem;
  }

  .privacy-content {
    padding: var(--spacing-md);
  }

  .privacy-content h2 {
    font-size: 1.5rem;
  }

  .privacy-content h3 {
    font-size: 1.1rem;
  }

  .nav-links a {
    display: block;
    margin: var(--spacing-sm) 0;
  }
}
/* RESPONSIVE */
@media (max-width: 1030px) {
  :root {
    --size-h1: 2.5rem;
    --size-h2: 2rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .services-section .grid-3 {
    grid-template-columns: 1fr;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: block;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-white);
    padding: 20px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-8px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    backdrop-filter: blur(8px);
    z-index: 999;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .nav-menu.open {
    opacity: 1;
    transform: translateY(0);
    max-height: calc(100vh - var(--header-height));
    pointer-events: auto;
    overflow-y: auto;
  }

  .nav-menu.open li {
    animation: navItemFade 0.35s ease forwards;
  }

  .nav-menu.open li:nth-child(1) { animation-delay: 0s; }
  .nav-menu.open li:nth-child(2) { animation-delay: 0.03s; }
  .nav-menu.open li:nth-child(3) { animation-delay: 0.06s; }
  .nav-menu.open li:nth-child(4) { animation-delay: 0.09s; }
  .nav-menu.open li:nth-child(5) { animation-delay: 0.12s; }
  .nav-menu.open li:nth-child(6) { animation-delay: 0.15s; }
  .nav-menu.open li:nth-child(7) { animation-delay: 0.18s; }
  .nav-menu.open li:nth-child(8) { animation-delay: 0.21s; }
  .nav-menu.open li:nth-child(9) { animation-delay: 0.24s; }

  @keyframes navItemFade {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
.btn-gap {
  margin-bottom: 15px;
}
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-icon {
    font-size: 2.2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-plus {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .feature-icon {
    font-size: 2.2rem;
  }
.feature-box:first-child .star-path {
  width: 40px;
  height: 40px;
}

  .experience-years {
    font-size: 2rem;
  }

  .video-wrapper {
    aspect-ratio: 16 / 9;
  }

  .video-play-btn svg {
    width: 60px;
    height: 60px;
  }

  .experience-badge {
    left: -15px;
    bottom: -50px;
    padding: 20px;
  }

  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .badge-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .badge-content h4 {
    font-size: 0.9rem;
  }

  .badge-content p {
    font-size: 0.8rem;
  }
  .hero .promocija {
    bottom: 10%;
  }
  .hero .popust {
  font-size: 15px;
}
  .page-header {
    height: 430px;
  }
  .contact-card img {
  height: unset;
}
}
@media (max-width: 600px) {
  :root {
    --size-h1: 1.9rem;
    --size-h2: 2rem;
  }
  .hero p, 
  .philosophy-intro p, 
  .feature-box p, 
  .about-section p, 
  .about-section ul li, 
  .section-header p, 
  .process-header p, 
  .process-step p, 
  .service-item p, 
  .testimonial-text, 
  .faq-answer p, 
  .cta-content p, 
  footer p,
  .page-lead, 
  .why-text, 
  .process-card p, 
  .section-header2 p, 
  .tick-list li, 
  .celebration-copy p, 
  .celebration-list li, 
  .private-lead, 
  .private-card p, 
  .offer-description, 
  .contact-block p, 
  .privacy-content p, 
  .privacy-content li  {
    font-size: .88rem;
  }
  .privacy-header h1 {
    font-size: var(--size-h1);
  }
  .hero .popust {
  width: 300px;
}
}
@media (max-width: 480px) {
  .logo img {
  height: 25px;
}
.service-item p {
  max-width: 100%;
}
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-plus {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .feature-icon {
    font-size: 2.2rem;
  }

  .video-wrapper {
    aspect-ratio: 16 / 9;
  }

  .video-play-btn svg {
    width: 50px;
    height: 50px;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .trust-badge {
    padding: 12px;
  }

  .badge-icon {
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
  }

  .badge-content h4 {
    font-size: 0.85rem;
  }

  .badge-content p {
    font-size: 0.75rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
}
}

@media (max-width: 520px) { 
  .offers-wrapper {
  padding: 0;
  background: var(--color-cream);
}
.offers-wrapper .menu-item-header {
  background: transparent;
  padding: 0 0;
}
.offers-wrapper .menu-title {
  background: transparent;
}

.offers-wrapper .menu-desc {
  padding-left: 0;
}
.offers-grid > div {
  padding: 30px 20px;
}

    .hero .promocija {
    bottom: 5%;
  }
  .hero .popust {
  font-size: 13px;
  width: 290px;
}
}
@media (max-width: 520px) { 

    .hero .promocija {
    top: 2%;
  }
  .hero .popust {
  font-size: 11px;
  width: 350px;
}
}

@media (max-width: 450px) {
  .page-header {
    height: 470px;
  }
}


