/* styles.css */
body {
    font-family: 'Poppins', sans-serif;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
}

/* --- Osnovne Animacije --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes scale-animation { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
.hero-background-zoom { animation: scale-animation 15s ease-in-out infinite; }

.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

.hover-lift { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.hover-lift:hover { transform: translateY(-5px); }

.gold-text { background: linear-gradient(to right, #FFD700, #F0E68C, #FFD700); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); }

.glass-effect { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.18); box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2); }

/* --- Navigacija --- */
.nav-link { position: relative; padding-bottom: 6px; font-weight: 500; /* Medium po defaultu */ color: #4b5563; /* Default siva */ }
.nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background: linear-gradient(to right, #FFD700, #F0E68C, #FFD700); transition: width 0.3s ease; }
.nav-link:hover { color: #3457D5; /* Plava na hover */ }
.nav-link:hover::after { width: 100%; }
/* Aktivni link dobija text-primary i font-semibold klase preko JS */
.text-primary { color: #3457D5 !important; } /* Osigurava da je aktivni link plav */
.font-semibold { font-weight: 600 !important; } /* Osigurava da je aktivni link boldiran */


/* --- Kartice (Commodities & Lokacije) --- */
.subsidiary-card {
    position: relative; overflow: hidden; z-index: 1; background-color: #ffffff;
    border: 1px solid #e5e7eb; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex; flex-direction: column; border-radius: 0.5rem;
}
.subsidiary-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06); border-color: rgba(212, 175, 55, 0.4); } /* Suptilniji hover */

.subsidiary-card .card-content-wrapper { position: relative; z-index: 2; background-color: inherit; border-radius: inherit; padding: 0; height: 100%; display: flex; flex-direction: column; }
.subsidiary-card .card-content-wrapper > div:first-child { height: 12rem; overflow: hidden; position: relative; border-top-left-radius: inherit; border-top-right-radius: inherit; }
.subsidiary-card .card-content-wrapper > div:first-child img { transition: transform 0.3s ease; width: 100%; height: 100%; object-fit: cover; } /* Bez zoom-a */
/* .subsidiary-card:hover .card-content-wrapper > div:first-child img { transform: scale(1.05); } */ /* Zoom UKLONJEN */
.subsidiary-card .card-content-wrapper > div:last-child { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.subsidiary-card .card-content-wrapper > div:last-child p { flex-grow: 1; margin-bottom: 1.5rem; font-size: 0.875rem; line-height: 1.6; color: #4b5563; }
.subsidiary-card .card-content-wrapper > div:last-child ul { margin-top: auto; font-size: 0.875rem; color: #4b5563; }
.subsidiary-card .card-content-wrapper > div:last-child ul li { margin-bottom: 0.25rem; }
.subsidiary-card .card-content-wrapper > div:last-child ul i { margin-top: 2px; color: #3457D5; }

/* --- Dugmad --- */
.btn-gold { background: linear-gradient(45deg, #FFD700, #F0E68C, #FFD700); background-size: 200% 200%; animation: gradient 5s ease infinite; transition: all 0.3s ease; position: relative; overflow: hidden; z-index: 1; color: #1a1a1a; border-radius: 8px; padding: 0.75rem 1.5rem; font-weight: 500; }
.btn-gold:hover { background-position: right center; box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4); }
.btn-gold::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%); border-radius: 50%; transform: translate(-50%, -50%); opacity: 0; transition: width 0.5s ease-out, height 0.5s ease-out, opacity 0.5s ease-out; z-index: -1; }
.btn-gold:hover::before { width: 200px; height: 200px; opacity: 1; }
.btn-transparent-white { background: transparent; border: 2px solid white; color: white; transition: all 0.3s ease; position: relative; overflow: hidden; z-index: 1; border-radius: 8px; padding: 0.75rem 1.5rem; font-weight: 500; }
.btn-transparent-white:hover { background-color: rgba(255, 255, 255, 0.1); }
.btn-transparent-white::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%); border-radius: 50%; transform: translate(-50%, -50%); opacity: 0; transition: width 0.5s ease-out, height 0.5s ease-out, opacity 0.5s ease-out; z-index: -1; }
.btn-transparent-white:hover::before { width: 200px; height: 200px; opacity: 1; }

/* --- Forma --- */
.form-group { position: relative; margin-bottom: 2rem; }
.form-group label { position: absolute; top: 1rem; left: 1rem; color: #6B7280; transition: all 0.2s ease-out; pointer-events: none; padding: 0 0.25rem; background-color: transparent; z-index: 1; font-size: 1rem; }
.form-group input:focus + label, .form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label, .form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label, .form-group select:valid + label { top: -0.75rem; left: 0.75rem; font-size: 0.75rem; color: #3457D5; background-color: #ffffff; padding: 0 0.25rem; border-radius: 4px; z-index: 2; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background-color: #f9fafb; border: 1px solid #e5e7eb; border-radius: 4px; transition: all 0.3s ease; padding: 1.25rem 1rem 0.75rem 1rem; box-sizing: border-box; color: #333; appearance: none; -webkit-appearance: none; }
input::placeholder, textarea::placeholder { color: transparent; }

/* === POPRAVKA ZA SELECT PREKLAPANJE === */
.form-group select:invalid { color: transparent; }
.form-group select:focus, .form-group select:valid { color: #333; }
/* === KRAJ POPRAVKE === */

.form-group input:focus, .form-group textarea:focus, .form-group select:focus { background: #ffffff; border-color: #D4AF37; box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2); outline: none; }
.form-group .select-arrow { position: absolute; top: 0; bottom: 0; right: 0; display: flex; align-items: center; padding-right: 0.75rem; pointer-events: none; color: #6B7280; transition: color 0.3s ease; } /* Zamenjeno 'inset-y' sa 'top' i 'bottom' */
.form-group select:focus ~ .select-arrow { color: #D4AF37; }

/* === STILOVI ZA NOVI TOGGLE I POLJA === */
.form-toggle-group {
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.form-toggle-btn {
    flex: 1 1 0%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    color: #4b5563;
    background-color: #f9fafb;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border-right: 1px solid #e5e7eb;
}
.form-toggle-btn:last-child {
    border-right: none;
}
.form-toggle-btn.active {
    background: linear-gradient(45deg, #3457D5, #4a6ee5);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(52, 87, 213, 0.3);
}
.form-toggle-btn:not(.active):hover {
    background-color: #f3f4f6;
}
.form-conditional-field {
    display: none; /* Sakriveno po defaultu */
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-out;
}
.form-conditional-field.visible {
    display: block; /* Prikazuje se preko JS */
    opacity: 1;
    transform: translateY(0);
}
/* === KRAJ NOVIH STILOVA === */


/* --- Biranje Jezika --- */
.language-selector { position: relative; }
.language-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 150px;
    z-index: 50;
    border-radius: 8px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    /* NOVI LUKSUZNI IZGLED */
    background: rgba(17, 24, 39, 0.9); /* Tamna pozadina */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Svetliji border */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); /* Jača senka */
}
.language-selector:hover .language-options { display: block; }
.language-options a {
    display: block;
    padding: 0.5rem 1rem;
    color: #e5e7eb !important; /* SVETLI TEKST - !important da pregazi Tailwind klasu .text-gray-700 */
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.language-options a:hover {
    background-color: rgba(52, 87, 213, 0.2); /* Plavi hover */
    color: #ffffff !important; /* Beli hover - !important da pregazi Tailwind klasu .hover:text-primary */
}

/* --- Dugme "Nazad na Vrh" --- */
#back-to-top { position: fixed; bottom: 2rem; right: 2rem; background: linear-gradient(45deg, #D4AF37, #b48f2f); color: white; width: 3.5rem; height: 3.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); opacity: 0; visibility: hidden; transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out; z-index: 100; cursor: pointer; border: none; }
#back-to-top.show { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-5px); box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4); }

/* --- Oblaci --- */
.hero-cloud { position: absolute; filter: blur(2px); pointer-events: none; z-index: 5; opacity: 0.1; }
.hero-cloud-1 { width: 750px; height: auto; top: 8%; left: -70%; animation: moveHeroCloud1 75s linear infinite; }
.hero-cloud-2 { width: 900px; height: auto; top: 10%; left: -95%; animation: moveHeroCloud2 65s linear infinite; animation-delay: 15s; }
.hero-cloud-3 { width: 800px; height: auto; top: -10%; left: -70%; animation: moveHeroCloud3 42s linear infinite; animation-delay: 8s; }
@keyframes moveHeroCloud1 { 0% { transform: translateX(0); } 100% { transform: translateX(calc(100% + 150vw)); } }
@keyframes moveHeroCloud2 { 0% { transform: translateX(0); } 100% { transform: translateX(calc(100% + 160vw)); } }
@keyframes moveHeroCloud3 { 0% { transform: translateX(0); } 100% { transform: translateX(calc(100% + 140vw)); } }
.png-cloud { position: absolute; filter: blur(2px); pointer-events: none; z-index: 3; opacity: 0.2; }
.png-cloud-1 { width: 950px; height: auto; top: -10%; left: -110%; animation: moveCloud1 40s linear infinite; }
.png-cloud-2 { width: 700px; height: auto; top: -15%; left: -110%; animation: moveCloud2 30s linear infinite; animation-delay: 8s; }
.png-cloud-3 { width: 620px; height: auto; top: -10%; left: -110%; animation: moveCloud3 55s linear infinite; animation-delay: 12s; }
@keyframes moveCloud1 { 0% { transform: translateX(0); } 100% { transform: translateX(calc(100% + 120vw)); } }
@keyframes moveCloud2 { 0% { transform: translateX(0); } 100% { transform: translateX(calc(100% + 130vw)); } }
@keyframes moveCloud3 { 0% { transform: translateX(0); } 100% { transform: translateX(calc(100% + 110vw)); } }

/* --- Mobilni Meni --- */
#mobile-menu { position: fixed; top: 0; left: -100%; width: 80%; max-width: 320px; height: 100vh; background: rgba(17, 24, 39, 0.9); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 1000; display: flex; flex-direction: column; overflow-y: auto; }
.mobile-menu-content { padding: 80px 20px 40px; }
#mobile-menu.open { left: 0; }
#mobile-menu-button { position: relative; z-index: 1001; }
#mobile-menu a, #mobile-menu h4 { opacity: 0; transform: translateY(15px); transition: opacity 0.3s ease, transform 0.3s ease; }
#mobile-menu.open a, #mobile-menu.open h4 { opacity: 1; transform: translateY(0); }
#mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transition: opacity 0.4s ease; z-index: 999; }
#mobile-menu-overlay.open { opacity: 1; visibility: visible; }

/* --- Modalni Prozor (za Polise) --- */
.modal-overlay { position: fixed; z-index: 1001; left: 0; top: 0; width: 100%; height: 100%; overflow: hidden; background-color: rgba(17, 24, 39, 0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: none; opacity: 0; transition: opacity 0.3s ease-out; padding: 1rem; }
.modal-overlay.visible { display: flex; align-items: center; justify-content: center; opacity: 1; }
#policy-modal.modal-overlay .modal-content { background-color: #fefefe; margin: auto; padding: 2rem; border-radius: 1rem; width: 100%; max-width: 700px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.15); max-height: 85vh; display: flex; flex-direction: column; transform: scale(0.95); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); backdrop-filter: none; -webkit-backdrop-filter: none; border: none; overflow: hidden; }
#policy-modal.modal-overlay.visible .modal-content { transform: scale(1); }
#policy-modal .modal-close { color: #9ca3af; position: absolute; top: 1rem; right: 1rem; font-size: 1.75rem; font-weight: bold; cursor: pointer; transition: color 0.2s; line-height: 1; z-index: 10; }
#policy-modal .modal-close:hover, #policy-modal .modal-close:focus { color: #374151; }
#policy-modal .modal-body { overflow-y: auto; padding-right: 1rem; flex-grow: 1; margin-top: 1rem; }
#policy-modal .modal-body h3 { margin-top: 0; margin-bottom: 0.75rem; color: #333; font-size: 1.125rem; }
#policy-modal .modal-body p, #policy-modal .modal-body ul { margin-bottom: 1rem; line-height: 1.6; color: #555; font-size: 0.95rem; }
#policy-modal .modal-body ul { list-style-position: inside; list-style-type: disc; padding-left: 0; }
#policy-modal.modal-overlay .modal-content::before { display: none; }

/* --- Preloader Stilovi (Novi) --- */
#preloader {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-out 0.2s, visibility 0s linear 0.7s;
}

body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
}

/* From Uiverse.io by barisdogansutcu */
#preloader svg {
  width: 3.25em;
  transform-origin: center;
  animation: rotate4 2s linear infinite;
}

#preloader circle {
  fill: none;
  stroke: hsl(214, 97%, 59%);
  stroke-width: 2;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash4 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dashoffset: -125px;
  }
}
/* --- Kraj Preloader Stilova --- */

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    header .container { padding-left: 1rem; padding-right: 1rem; }
    .text-6xl { font-size: 2.5rem; line-height: 1.2; } .text-5xl { font-size: 2.25rem; line-height: 1.2; }
    .text-4xl { font-size: 2rem; } .text-3xl { font-size: 1.75rem; } .text-2xl { font-size: 1.5rem; }
    .hero-text { font-size: 2.5rem; } .hero-subtext { font-size: 1.1rem; }
    .section-title { font-size: 2rem; } .section-subtitle { font-size: 1rem; } .content-title { font-size: 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; }
    footer .grid { grid-template-columns: 1fr; text-align: center; } footer .flex.space-x-4 { justify-content: center; }

    #policy-modal.modal-overlay .modal-content { width: 95%; max-height: 85vh; padding: 1.5rem; }
    #policy-modal .modal-close { top: 0.75rem; right: 0.75rem; }

    /* Stilovi za category modal na mobilnom */
    #category-modal-overlay .modal-content { max-width: 95%; padding: 1.5rem; max-height: 90vh; /* Ostaje overflow-y: auto */ }
    #category-modal-overlay .modal-content > div { flex-direction: column; }
    #category-modal-overlay .modal-content h2 { font-size: 1.75rem; } #category-modal-overlay .modal-content p { font-size: 0.9rem; }
    #category-modal-overlay .modal-content h4 { font-size: 1.1rem; } #category-modal-overlay #modal-product-list { grid-template-columns: 1fr; }
    #category-modal-overlay .modal-nav-btn { width: 32px; height: 32px; font-size: 20px; background-color: rgba(0, 0, 0, 0.3); border: none; }
    #category-modal-overlay .modal-nav-prev { left: 0.5rem; } #category-modal-overlay .modal-nav-next { right: 0.5rem; }
    #category-modal-overlay .modal-close { top: 10px; right: 10px; color: #e5e7eb;}
}

@media (max-width: 480px) {
    .text-6xl { font-size: 2rem; } .text-5xl { font-size: 1.8rem; } .text-4xl { font-size: 1.6rem; }
    section.py-20, section.py-16 { padding-top: 3rem; padding-bottom: 3rem; }

    #policy-modal.modal-overlay .modal-content { padding: 1rem; }
    #policy-modal .modal-close { top: 0.5rem; right: 0.5rem; }

    #category-modal-overlay .modal-content h2 { font-size: 1.5rem; } #category-modal-overlay .modal-content p { font-size: 0.85rem; }
    #category-modal-overlay .modal-content h4 { font-size: 1rem; } #category-modal-overlay #modal-product-list { font-size: 0.85rem; }
    #category-modal-overlay #modal-product-list ul li { font-size: 0.75rem; }
}


/* === DODATAK: Luksuzna "Trading Commodities" Sekcija === */
.commodity-card-rich {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem; /* 8px */
    aspect-ratio: 1 / 1; /* Kvadratni oblik */
    display: flex;
    flex-direction: column; /* Za ikonu iznad teksta */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    background-color: #1f2937; /* Tamni fallback */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.commodity-card-rich:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.commodity-card-rich .card-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.4s ease, filter 0.4s ease;
    transform-origin: center;
}

.commodity-card-rich:hover .card-bg-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.commodity-card-rich .card-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 87, 213, 0.6) 0%, rgba(17, 24, 39, 0.8) 100%); /* Plavo-tamna */
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.commodity-card-rich:hover .card-overlay {
    background: linear-gradient(135deg, rgba(52, 87, 213, 0.4) 0%, rgba(17, 24, 39, 0.6) 100%); /* Malo svetlije na hover */
    opacity: 0.9;
}

.commodity-card-rich .card-icon {
    font-size: 2.5rem; /* 40px */
    color: #D4AF37; /* Zlatna ikonica */
    margin-bottom: 0.75rem; /* 12px */
    transition: transform 0.3s ease;
}

.commodity-card-rich:hover .card-icon {
    transform: scale(1.1);
}

.commodity-card-rich .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; /* 24px */
    font-weight: 600; /* Semibold */
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    line-height: 1.3;
}

/* Specijalna Zlatna Kartica (Call to Action) */
.commodity-card-cta {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem; /* 8px */
    aspect-ratio: 1 / 1; /* Kvadratni oblik */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(45deg, #FFD700, #F0E68C, #FFD700);
    background-size: 200% 200%;
    animation: gradient 5s ease infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 1;
}

.commodity-card-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    background-position: right center;
}

.commodity-card-cta .card-icon {
    font-size: 3rem; /* 48px */
    color: #1a1a1a; /* Tamna ikonica na zlatnoj pozadini */
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.commodity-card-cta:hover .card-icon {
     transform: scale(1.1);
}

.commodity-card-cta .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; /* 24px */
    font-weight: 600; /* Semibold */
    color: #1a1a1a; /* Tamni tekst */
    line-height: 1.3;
}


/* === DODATAK: Luksuzne "Office Cards" (contact.html) === */
.office-card-rich {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem; /* 8px */
    min-height: 450px; /* Visina da stane sadržaj */
    display: flex;
    flex-direction: column;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.office-card-rich:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.office-card-rich .card-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scale(1.15); /* Početno stanje za parallax */
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Tranzicija za parallax */
}
/* Parallax efekat na skrol (okida se kad .animate-on-scroll dobije .visible) */
.office-card-rich.visible .card-bg-image {
    transform: scale(1); /* Krajnje stanje za parallax */
}
.office-card-rich .card-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* Jači plavi gradijent da se tekst bolje vidi */
    background: linear-gradient(135deg, rgba(52, 87, 213, 0.75) 0%, rgba(17, 24, 39, 0.9) 100%);
    z-index: -1;
}
.office-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem; /* 32px */
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Osigurava da kartica zauzme celu visinu */
    justify-content: space-between; /* Gura link na dno */
}