    /* ========================================================================
       CORE THEME / BASE
       ======================================================================== */
    /* Definišemo CSS varijable za lakše održavanje */
    :root {
        --hero-height-mobile: 60vh; /* 60% visine ekrana na mobilnom */
        --hero-height-desktop: 80vh; /* 80% visine ekrana na desktopu */
        --overlay-color: rgba(10, 20, 50, 0.65); /* Tamno plavi transparentni sloj */
    }

    body { font-family: 'Inter', sans-serif; background-color: #f8f9fa; }

    /* Globalni layout na mobilnom – malo veći unutrašnji razmaci */
    section {
        scroll-margin-top: 80px; /* da anchor linkovi ne seku naslov ispod navbara */
    }

    /* Stilovi za Hero blok */
    .hero-block {
        /* Visina i centriranje sadržaja u hero sekciji */
        min-height: var(--hero-height-mobile);
        display: flex;
        align-items: center;
    }

    /* Magija za sliku: object-fit osigurava da se slika ne rasteže ružno */
    .hero-img {
        object-fit: cover;
        object-position: center; /* Fokusiramo se na centar slike */
        z-index: 0;
    }

    /* Overlay sloj koji poboljšava kontrast */
    .hero-overlay {
        background-color: var(--overlay-color);
        z-index: 1;
    }

    /* Kontejner sa sadržajem ide iznad svega */
    .z-1 { z-index: 2; }

    /* Suptilna senka na tekstu za bolju čitljivost */
    .text-shadow {
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

    /* Pomoćne klase za razmake na većim ekranima */
    @media (min-width: 992px) {
        .hero-block { min-height: var(--hero-height-desktop); }
        .py-lg-10 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
        .min-vh-60 { min-height: 60vh; }
    }

    /* Hero tipografija – bolje skaluje na mobilnom */
    @media (max-width: 575.98px) {
        .hero-block h1.display-2 {
            font-size: 2.2rem;
            line-height: 1.2;
        }
        .hero-block .lead {
            font-size: 1rem;
        }
        .hero-block .btn-lg {
            width: 100%;
            margin-bottom: 0.75rem;
        }
    }

    /* Letter spacing za badge */
    .ls-1 { letter-spacing: 1px; }

    /* Ostali stilovi (od ranije) */
    .card { border: none; transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out; }
    .card:hover { transform: translateY(-6px); box-shadow: 0 18px 35px rgba(0,0,0,0.08); }

    /* Bolji razmak kartica na manjim ekranima */
    @media (max-width: 767.98px) {
        .card.h-100 {
            min-height: auto;
        }
    }
	
	
	
	/* Stilovi za tekstualne sekcije */
#detaljno-o-emdr p {
    line-height: 1.8; /* Veći razmak između redova za lakše čitanje */
    font-size: 1.05rem;
}

/* Sticky efekat za sliku na desktopu */
@media (min-width: 992px) {
    .sticky-top {
        z-index: 1020;
    }
}

/* Dodatni stil za Blockquote */
blockquote p {
    font-size: 1.1rem;
    color: #2c3e50;
}

/* Razmak za veće sekcije */
.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Stil za ikone u 'O nama' sekciji */
.bi-mortarboard-fill, .bi-globe-europe-africa {
    transition: transform 0.3s ease;
}

#o-nama .row:hover .bi-mortarboard-fill, 
#o-nama .row:hover .bi-globe-europe-africa {
    transform: scale(1.2);
}

/* Dugme za PDF - specifična animacija */
.btn-outline-danger {
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
}

/* Efekat podizanja kartice na hover */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
    background-color: #fff !important; /* Postaje čisto bela na hover */
}

/* Stil za male ikonice */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stil za liniju ispod naslova */
.ls-wide {
    letter-spacing: 2px;
}
/* Stilovi za ikone u krugovima */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Subtilne pozadine za ikone */
.bg-primary-subtle { background-color: rgba(13, 110, 253, 0.1) !important; }
.bg-success-subtle { background-color: rgba(25, 135, 84, 0.1) !important; }
.bg-warning-subtle { background-color: rgba(255, 193, 7, 0.1) !important; }

/* Interaktivna kartica */
.hover-card-action {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent !important;
}

.hover-card-action:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    border-color: rgba(0,0,0,0.05) !important;
}

.hover-card-action:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

/* Dugme "link" u kartici */
.btn-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

/* Specifični stilovi za Krizni tim */
#krizni-tim .badge {
    font-weight: 500;
    transition: all 0.3s ease;
}

#krizni-tim .badge:hover {
    background-color: #0d6efd !important;
    color: #fff !important;
    border-color: #0d6efd !important;
}

#krizni-tim .bg-dark {
    background: linear-gradient(145deg, #212529, #343a40);
}
/* Stilovi za Modal */
.modal-content {
    background: linear-gradient(to bottom right, #ffffff, #f8f9fa);
}

.modal-body p {
    font-size: 1.1rem;
    text-align: justify;
}

/* Specifičan hover za aktuelno kartice */
#aktuelno .hover-card-action:hover {
    border-bottom: 4px solid #0d6efd !important;
}

/* Animacija za pojavljivanje modala */
.modal.fade .modal-dialog {
    transform: scale(0.9);
    transition: transform 0.3s ease-out;
}
.modal.show .modal-dialog {
    transform: scale(1);
}
/* Povećavamo logo unutar kartice na 80% širine kontejnera */
.w-80 {
    width: 80% !important;
}

/* Osiguravamo da su slike u karticama uvek centrirane i ne prevelike */
#aktuelno .card img {
    max-height: 200px; /* Limitiramo visinu da ne "pobegne", ali širina ostaje velika */
    object-fit: contain;
}

/* Efekat za bedževe (subtle pozadine) */
.bg-primary-subtle { background-color: #cfe2ff !important; }
.bg-success-subtle { background-color: #d1e7dd !important; }
.bg-warning-subtle { background-color: #fff3cd !important; }


/* Preklapanje slika u galeriji */
.mt-n4 {
    margin-top: -80px !important; /* Efekt preklapanja druge slike preko prve */
}

.z-1 {
    z-index: 5;
}

/* Hover efekat zumiranja slike */
.hover-zoom {
    transition: transform 0.5s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

/* Zlatni akcenti za nagradu */
.text-warning {
    color: #d4af37 !important; /* Elegantna zlatna boja */
}

.bg-warning-subtle {
    background-color: rgba(212, 175, 55, 0.1) !important;
}

/* Stilizacija video playera */
.ratio-16x9 video {
    background-color: #000;
    outline: none;
}

/* Download dugme hover efekat */
.btn-primary.shadow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3) !important;
}

/* Ikone u video sekciji */
.bi-cloud-arrow-down-fill {
    transition: transform 0.3s ease;
}

.btn-primary:hover .bi-cloud-arrow-down-fill {
    transform: translateY(3px);
}

/* Kontejner za slike tima - uniformna visina */
.team-img-container {
    height: 220px; /* Dodatno smanjena visina za lošiji kvalitet slika */
    overflow: hidden;
    border-bottom: 2px solid #eaeaea;
}

/* Stil za same slike - maksimalna optimizacija oštrine */
.team-img-compact {
    max-height: 100%;
    width: auto;
    object-fit: contain; /* Osigurava da se cela slika vidi unutar okvira */
    transition: transform 0.3s ease;
}

.team-card {
    transition: all 0.3s ease;
    border-radius: 10px !important;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
}

.team-card:hover .team-img-compact {
    transform: scale(1.03); /* Suptilnije zumiranje */
}

/* "Naš tim" – kartice i email hover (index + edukacija) */
#nas-tim .transition-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#nas-tim .transition-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0, 35, 73, 0.10) !important;
}

#nas-tim .transition-card p {
    line-height: 1.75 !important;
    text-align: left !important;
}

#nas-tim a[href^="mailto:"] {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease;
}

#nas-tim a[href^="mailto:"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    opacity: 0.75;
}

#nas-tim a[href^="mailto:"]:hover,
#nas-tim a[href^="mailto:"]:focus {
    color: var(--emdr-zlatna) !important;
}

#nas-tim a[href^="mailto:"]:hover::after,
#nas-tim a[href^="mailto:"]:focus::after {
    transform: scaleX(1);
}
/* Stilovi za input polja u formi */
.form-control:focus {
    background-color: #fff !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    border: 1px solid #0d6efd !important;
}

#kontakt .icon-box {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#kontakt .card {
    background: #ffffff;
}
/* ========================================================================
   BRAND TOKENS + GLOBAL COMPONENTS
   ======================================================================== */
/* BOJE LOGOTIPA */
:root {
    --emdr-teget: #002349;
    --emdr-zlatna: #C5A059;
    --emdr-zlatna-light: #e2ce9d;
}

.footer-emdr {
    background-color: var(--emdr-teget);
    color: #ffffff;
    font-size: 0.95rem;
}

.footer-heading {
    color: var(--emdr-zlatna);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-left: 3px solid var(--emdr-zlatna);
    padding-left: 15px;
}

.footer-text-muted {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Linkovi u meniju */
.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--emdr-zlatna) !important;
    padding-left: 8px;
}

.gold-link {
    color: var(--emdr-zlatna) !important;
}

/* Socijalne mreže */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--emdr-zlatna);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.social-icon:hover {
    background: var(--emdr-zlatna);
    color: var(--emdr-teget);
    transform: translateY(-3px);
}

/* Kontakt i detalji */
.text-gold {
    color: var(--emdr-zlatna);
}

.border-gold-subtle {
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.border-top-gold {
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

/* Footer – "Dizajn i razvoj" link (da se bolje vidi) */
.footer-emdr .footer-dev-link{
    color: #ffd37a !important; /* svetlija zlatna za bolji kontrast */
    text-decoration: none;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.14);
    border: 1px solid rgba(197, 160, 89, 0.28);
    display: inline-flex;
    align-items: center;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.footer-emdr .footer-dev-link:hover,
.footer-emdr .footer-dev-link:focus{
    color: #002349 !important;
    background: #C5A059;
    border-color: #C5A059;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0,35,73,.18);
}
.footer-emdr .footer-dev-link i{
    font-size: .95rem;
}

/* Custom Navigacijski Stilovi */
.custom-nav-link {
    color: #002349 !important; /* Teget sa logoa */
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar {
    transition: all 0.3s ease-in-out;
    z-index: 1050 !important;
}

/* Logo (isti shrink efekat kao na index) */
#main-logo {
    height: 64px;
    width: auto;
    transition: all 0.3s ease-in-out;
}

.navbar-shrink {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar-shrink #main-logo {
    height: 50px !important;
}

.custom-nav-link:hover,
.custom-nav-link:focus {
    color: #C5A059 !important; /* Zlatna sa logoa */
}

/* Podvlačenje na hover */
.custom-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: #C5A059;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.custom-nav-link:hover::after,
.custom-nav-link:focus::after,
.custom-nav-link.active::after {
    width: 60%;
}

/* Terapeuti – kartice */
.therapist-card {
    border-radius: 1.25rem !important;
}

.therapist-card-cover {
    height: 220px;
    background: radial-gradient(1200px circle at 20% 10%, rgba(197,160,89,0.25), transparent 55%),
                radial-gradient(900px circle at 80% 20%, rgba(0,35,73,0.25), transparent 50%),
                linear-gradient(135deg, rgba(0,35,73,0.92), rgba(0,35,73,0.65));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.5s ease;
}

.therapist-card:hover .therapist-card-cover {
    transform: scale(1.05);
}

.therapist-avatar {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: 1px;
    color: #002349;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(197, 160, 89, 0.8);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* Edukacija / Aktuelno kartice + modali (shared) */
.emdr-gold-accent { color: var(--emdr-zlatna) !important; }
.rounded-5 { border-radius: 2rem !important; }

.emdr-news-card {
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent !important;
}
.emdr-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,35,73,0.12) !important;
    border-color: rgba(197,160,89,0.55) !important;
}

.emdr-card-img-box {
    width: 100%;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.emdr-logo-anim { transition: 0.6s ease; max-width: 100%; }
.emdr-news-card:hover .emdr-logo-anim { transform: scale(1.08); }

.emdr-hover-link { position: relative; display: inline-block; padding-bottom: 5px; }
.emdr-link-text {
    color: var(--emdr-teget);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    transition: 0.3s;
}
.emdr-hover-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--emdr-zlatna);
    transition: 0.4s ease;
}
.emdr-news-card:hover .emdr-link-text { color: var(--emdr-zlatna); }
.emdr-news-card:hover .emdr-hover-link::after { width: 100%; }
.emdr-arrow-move { transition: 0.3s ease; display: inline-block; }
.emdr-news-card:hover .emdr-arrow-move { transform: translateX(5px); }

.btn-emdr-solid {
    background-color: var(--emdr-zlatna);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
    white-space: nowrap;
}
.btn-emdr-solid:hover {
    background-color: var(--emdr-teget);
    color: var(--emdr-zlatna);
    transform: translateY(-3px);
}

.btn-emdr-outline {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
    white-space: nowrap;
}
.btn-emdr-outline:hover { background-color: #e9ecef; color: #333; }

/* Zlatno dugme u meniju */
.btn-emdr-gold {
    background-color: #C5A059;
    color: white !important;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(197, 160, 89, 0.2);
}

.btn-emdr-gold:hover {
    background-color: #002349; /* Menja se u teget na hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 35, 73, 0.2);
}

/* Popravka za Hero Section Badge */
.text-primary { color: #002349 !important; }
.bg-primary { background-color: #002349 !important; }

/* Debela zlatna linija sa strane citata */
.border-gold-thick {
    border-left: 5px solid #C5A059 !important;
}

/* Svetlo zlatna za tekst na tamnoj pozadini */
.text-gold-light {
    color: #e2ce9d !important;
}

/* Popravka za karticu "Brzina i Trajnost" ispod citata */
.bg-primary-emdr {
    background-color: #002349 !important;
    color: white !important;
}

/* Ako želiš da i naslov "Šta je zapravo EMDR?" bude upečatljiv */
h2.display-5 {
    color: #002349;
    font-weight: 800;
}

/* Hero Sekcija - Premium Izgled */
.hero-block {
    min-height: 80vh;
}

/* Tamno teget filter preko slike */
.hero-overlay-dark {
    background: linear-gradient(135deg, rgba(0, 35, 73, 0.9) 0%, rgba(0, 35, 73, 0.6) 100%);
    z-index: 1;
}

.text-shadow-heavy {
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Razmak između slova za bedž */
.ls-2 {
    letter-spacing: 2px;
}

/* Animacija za sliku u pozadini */
.hero-bg-image {
    transition: transform 10s ease-out;
}

.hero-block:hover .hero-bg-image {
    transform: scale(1.05);
}

/* Zlatna boja za dugme ako već nismo definisali */
.btn-emdr-gold {
    background-color: #C5A059 !important;
    color: white !important;
    border: none;
}

.btn-emdr-gold:hover {
    background-color: #b08e4a !important;
    transform: translateY(-3px);
}
#btn-back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: none; /* Sakriveno dok se ne skroluje */
        z-index: 1000;
        background-color: #002349; /* Tvoja tamnoplava */
        border: 2px solid #C5A059; /* Tvoja zlatna ivica */
        color: #C5A059;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        padding: 0;
        transition: all 0.3s ease;
    }

    #btn-back-to-top:hover {
        background-color: #C5A059; /* Zlatna na hover */
        color: #002349; /* Tamnoplava strelica na hover */
        transform: translateY(-5px); /* Mali efekat skoka */
    }

/* ========================================================================
   LEGACY / MIGRATED RULES (index and earlier iterations)
   NOTE: kept for backward compatibility during refactor.
   ======================================================================== */
/* === Prebačeno iz inline <style> u index.html === */
body { font-family: 'Inter', sans-serif; background-color: #f8f9fa; }
.hero-section { background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); color: white; padding: 100px 0; }
.card { border: none; transition: transform 0.3s; }
.card:hover { transform: translateY(-10px); }

.navbar {
    transition: all 0.3s ease-in-out;
    z-index: 1050 !important; /* Da uvek bude iznad slika i ostalog sadržaja */
}

#main-logo {
    height: 64px; /* Tvoja idealna visina */
    width: auto;
    transition: all 0.3s ease-in-out;
}

.navbar-shrink {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; /* Dodaje senku pri skrolu */
}

.navbar-shrink #main-logo {
    height: 50px !important; /* Smanjena visina logotipa */
}

.sticky-top:not(.navbar) {
    z-index: 1040; /* Niži z-index od glavnog menija */
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Sakriveno dok ne krene skrol */
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #C5A059; /* Tvoja zlatna boja */
    border: none;
    transition: all 0.3s ease;
}

#btn-back-to-top:hover {
    background-color: #002349; /* Teget boja na hover */
    transform: translateY(-5px);
}

.navbar-shrink {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.border-top-gold {
    border-top: 1px solid rgba(197, 160, 89, 0.2) !important;
}

.footer-dev-link {
    text-decoration: none;
}

/* Prebačeno iz inline <style> bloka na index.html (linije 261–290) */
.text-gold { color: #c5a059 !important; }
.border-gold { border-color: #c5a059 !important; }
.border-gold-subtle { border: 1px solid rgba(197, 160, 89, 0.3) !important; }
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
strong { color: #002349; }
.text-white strong { color: #c5a059; }
#priznanja .priznanja-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 35, 73, 0.08);
    border: 1px solid rgba(0, 35, 73, 0.12);
    color: #002349;
    flex-shrink: 0;
}
#priznanja .priznanja-icon.gold {
    background: rgba(197, 160, 89, 0.14);
    border-color: rgba(197, 160, 89, 0.35);
    color: #C5A059;
}
#priznanja .badge-year {
    background: #002349 !important;
    color: #fff !important;
    border: 1px solid rgba(197, 160, 89, 0.45);
	
	
}

   /* Ponovljeni stilovi radi konzistentnosti */
    .text-gold { color: #c5a059 !important; }
    .py-6 { padding-top: 5rem; padding-bottom: 5rem; }
    .rounded-4 { border-radius: 1.5rem !important; }

    /* Isti hover efekat kao na prethodnim dugmićima */
    .btn-custom-outline {
        border: 2px solid #002349;
        color: #002349;
        transition: all 0.3s ease;
        background: transparent;
        text-decoration: none;
        display: inline-block;
    }
    .btn-custom-outline:hover {
        background-color: #002349;
        color: #c5a059;
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0,35,73,0.2);
    }

    /* Suptilna interakcija na celu karticu */
    .transition-card {
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    .transition-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,35,73,0.08) !important;
    }

    /* Aktuelno – da prati ostale sekcije */
    #aktuelno .emdr-card-img-box{
        background: #fff;
    }
    #aktuelno .emdr-card-img-box img{
        display:block;
    }
    
    /* Aktuelno modal – bedževi (da se datumi jasno vide) */
    .emdr-modal .aktuelno-badge{
        font-size: .92rem;
        font-weight: 800;
        letter-spacing: .15px;
        padding: .48rem .9rem !important;
        box-shadow: 0 10px 22px rgba(0,35,73,.10);
        border-width: 1px !important;
    }
    .emdr-modal .aktuelno-badge i{
        font-size: 1.05em;
    }
    .emdr-modal .aktuelno-badge-date{
        background: #C5A059;
        color: #fff;
        border: 1px solid rgba(197,160,89,.45);
    }
    .emdr-modal .aktuelno-badge-place{
        background: rgba(0,35,73,.08);
        color: #002349;
        border: 1px solid rgba(0,35,73,.18);
    }
    .emdr-modal .aktuelno-badge-meta{
        background: #fff;
        color: #002349;
        border: 1px solid rgba(0,35,73,.14);
    }
    @media (max-width: 576px){
        .emdr-modal .aktuelno-badge{
            font-size: .9rem;
            width: 100%;
            justify-content: center;
        }
    }

    /* Kartice */
    .emdr-news-card { 
        cursor: pointer; 
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
        border: 1px solid rgba(197,160,89,.22) !important; 
    }
    .emdr-news-card:hover { 
        transform: translateY(-10px); 
        box-shadow: 0 25px 50px rgba(0,35,73,0.12) !important; 
        border-color: rgba(197,160,89,.65) !important; 
    }
    
    .emdr-card-img-box { 
        width: 100%; aspect-ratio: 16/10; 
        display: flex; align-items: center; justify-content: center; 
        overflow: hidden; 
    }
.emdr-card-img-box img{
    object-position: center center;
}
    .emdr-logo-anim { transition: 0.6s ease; max-width: 100%; }
    .emdr-news-card:hover .emdr-logo-anim { transform: scale(1.1); }

    /* Interaktivni Link (Hover efekat na kartici) */
    .emdr-hover-link { position: relative; display: inline-block; padding-bottom: 5px; }
    .emdr-link-text { 
        color: #002349; font-weight: 800; text-transform: uppercase; 
        font-size: 0.8rem; letter-spacing: 1.5px; transition: 0.3s; 
    }
    .emdr-hover-link::after { 
        content: ''; position: absolute; bottom: 0; left: 0; 
        width: 30px; height: 2px; background-color: #c5a059; 
        transition: 0.4s ease; 
    }
    
    .emdr-news-card:hover .emdr-link-text { color: #c5a059; }
    .emdr-news-card:hover .emdr-hover-link::after { width: 100%; }
    .emdr-arrow-move { transition: 0.3s ease; display: inline-block; }
    .emdr-news-card:hover .emdr-arrow-move { transform: translateX(5px); }

    /* Dugmad unutar modala */
    .btn-emdr-solid { 
        background-color: #c5a059; color: white; border: none; 
        border-radius: 50px; font-weight: 700; text-transform: uppercase; 
        font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; 
        white-space: nowrap;
    }
    .btn-emdr-solid:hover { background-color: #002349; color: #c5a059; transform: translateY(-3px); }

    .btn-emdr-outline { 
        background-color: #f8f9fa; color: #6c757d; border: 1px solid #dee2e6; 
        border-radius: 50px; font-weight: 600; text-transform: uppercase; 
        font-size: 0.85rem; transition: 0.3s; 
        white-space: nowrap;
    }
    .btn-emdr-outline:hover { background-color: #e9ecef; color: #333; }

/* Čitljivost podnaslova u "Krizni tim" promo kartici na index.html */
div[style*="linear-gradient(135deg, rgba(0,35,73,0.96)"] .small.opacity-75 {
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
}

/* Ujednačen izgled "Resursi" kartica (index.html) */
.emdr-resource-card{
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.emdr-resource-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0,35,73,.08);
    border-color: rgba(197,160,89,.55) !important;
}

/* Medijska arhiva – prebačeno iz index.html (<style> blok) */
#video-gostovanje{
    isolation: isolate;
}
#video-gostovanje .media-kicker{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .82rem;
    color: #C5A059;
}
#video-gostovanje .media-chip{
    display:inline-flex;
    align-items:center;
    padding: .42rem .78rem;
    border-radius: 999px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(0,35,73,.12);
    color:#002349;
    font-weight: 800;
    font-size: .85rem;
    box-shadow: 0 10px 22px rgba(0,35,73,.06);
    backdrop-filter: blur(6px);
}
#video-gostovanje .media-chip i{
    color:#C5A059;
}
#video-gostovanje .media-video-frame{
    background: linear-gradient(180deg, #002349, #001a36);
    padding: .6rem;
    border-radius: 1.5rem;
    box-shadow: 0 22px 48px rgba(0,35,73,.18);
    position: relative;
    overflow: hidden;
}
#video-gostovanje .media-video-wrap{
    position: relative;
}
#video-gostovanje .media-play{
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    padding: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,.18), rgba(0,0,0,0) 55%);
    cursor: pointer;
    z-index: 4;
    transition: opacity .2s ease, transform .2s ease;
}
#video-gostovanje .media-play-inner{
    width: 84px;
    height: 84px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(197,160,89,.45);
    box-shadow: 0 18px 40px rgba(0,35,73,.35);
    color: #002349;
    transform: translateY(0);
}
#video-gostovanje .media-play-inner i{
    font-size: 2.4rem;
    margin-left: 2px;
    color: #C5A059;
}
#video-gostovanje .media-play:hover .media-play-inner{
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(0,35,73,.38);
    border-color: rgba(197,160,89,.65);
}
#video-gostovanje .media-play.is-hidden{
    opacity: 0;
    pointer-events: none;
    transform: scale(.98);
}
#video-gostovanje .media-video-frame::before{
    content:"";
    position:absolute;
    left:0; right:0; top:0;
    height: 4px;
    background: linear-gradient(90deg, rgba(197,160,89,1), rgba(197,160,89,.35));
    z-index: 2;
}
#video-gostovanje .media-video-frame::after{
    content:"";
    position:absolute;
    inset: -80px -120px auto auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(197,160,89,.22), transparent 62%);
    z-index: 1;
    pointer-events: none;
}
#video-gostovanje .media-video-badge{
    position:absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 3;
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(197,160,89,.35);
    color: #002349;
    font-weight: 800;
    font-size: .85rem;
    box-shadow: 0 14px 30px rgba(0,35,73,.22);
}
#video-gostovanje .media-video-badge i{
    color:#C5A059;
}
#video-gostovanje .media-quote{
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(0,35,73,.10);
    border-left: 4px solid #C5A059;
    border-radius: 1rem;
    padding: 1.1rem 1.1rem;
    color: #002349;
    box-shadow: 0 14px 34px rgba(0,35,73,.06);
    backdrop-filter: blur(8px);
}
#video-gostovanje .media-quote p{
    font-style: italic;
    opacity: .9;
    line-height: 1.7;
}
#video-gostovanje .media-quote-icon{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display:grid;
    place-items:center;
    background: #fff;
    border: 1px solid rgba(197,160,89,.30);
    color:#C5A059;
    flex: 0 0 auto;
}
#video-gostovanje .media-cta-primary{
    background-color: #002349;
    color: #C5A059;
    border: 1px solid #002349;
}
#video-gostovanje .media-cta-primary:hover,
#video-gostovanje .media-cta-primary:focus{
    background-color: #C5A059;
    color: #002349;
    border-color: #C5A059;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,35,73,.16);
}
#video-gostovanje .media-cta-outline{
    background: #fff;
    color: #002349;
    border: 1px solid rgba(0,35,73,.18);
}
#video-gostovanje .media-cta-outline:hover,
#video-gostovanje .media-cta-outline:focus{
    border-color: rgba(197,160,89,.55);
    color: #002349;
    box-shadow: 0 12px 26px rgba(0,35,73,.10);
    transform: translateY(-2px);
}
@media (max-width: 576px){
    #video-gostovanje .media-video-badge{
        left: .75rem;
        right: .75rem;
        bottom: .75rem;
        justify-content:center;
        text-align:center;
    }
    #video-gostovanje .media-play-inner{
        width: 74px;
        height: 74px;
    }
}

/* ========================================================================
   SHARED UTILITIES (new standardized classes)
   ======================================================================== */
/* Utility: uklanjanje ponovljenih inline stilova (index.html) */
.text-emdr-navy { color: #002349 !important; }
.bg-emdr-light { background-color: #f4f7f9 !important; }
.emdr-divider {
    width: 50px;
    height: 3px;
    background-color: #c5a059;
}

.emdr-tracking-2 { letter-spacing: 2px; }
.bg-emdr-navy { background-color: #002349 !important; }
.emdr-datebar {
    background: rgba(0,35,73,.04);
    color: #002349;
}

.emdr-badge-soft-navy{
    background: rgba(0,35,73,.06);
    border: 1px solid rgba(0,35,73,.12);
    color: #002349;
}

.emdr-img-cover{ object-fit: cover; }
.emdr-img-h380{
    height: 380px;
    object-fit: cover;
    display: block;
}
.emdr-avatar-180{
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.emdr-section-soft-borders{
    background: rgba(0,35,73,.04);
    border-top: 1px solid rgba(197,160,89,.18);
    border-bottom: 1px solid rgba(197,160,89,.18);
}

.emdr-btn-gold-solid{
    background: #C5A059;
    color: #fff;
    border: 1px solid #C5A059;
}

.emdr-badge-navy-gold{
    background: #002349;
    color: #fff;
    border: 1px solid rgba(197,160,89,.35);
}

.emdr-bio-text{
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: justify;
}

.emdr-btn-close-shadow{
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.emdr-modal-content{
    border-radius: 2.5rem;
    overflow: hidden;
}
.emdr-h380-center{ height: 380px; }
.emdr-img-contain-380{
    height: 380px;
    object-fit: contain;
    display: block;
    background: #fff;
}

.emdr-divider-60{
    width: 60px;
    height: 3px;
}

.z-10{ z-index: 10; }

.emdr-hero-pill{
    background-color: #C5A059;
    color: #fff;
    font-size: 0.75rem;
}

.emdr-faint-frame{
    z-index: 0;
    opacity: 0.3;
}

.emdr-fs-10{ font-size: 10px; }

.emdr-border-dashed-gold{
    border: 2px dashed #c5a059;
    background-color: #fffdf9;
}

.emdr-soft-gold-badge{
    background: rgba(197,160,89,.14);
    color: #C5A059;
    border: 1px solid rgba(197,160,89,.35);
}

.emdr-lh-18{ line-height: 1.8; }
.emdr-logo-maxh-80{ max-height: 80px; }

/* index.html: hero background bez inline style */
.hero-bg-image{
    background-image: url("../img/slika5.png");
    background-size: cover;
    background-position: center;
}

.emdr-gold-soft-ring{
    background: rgba(197,160,89,.14);
    border: 1px solid rgba(197,160,89,.35);
}

.emdr-video-bg{
    background:
        radial-gradient(1200px 500px at 10% 0%, rgba(197,160,89,.12), transparent 55%),
        radial-gradient(900px 420px at 100% 10%, rgba(0,35,73,.08), transparent 52%),
        #ffffff;
}

.emdr-hero-46vh{ min-height: 46vh; }
.emdr-hero-42vh{ min-height: 42vh; }
.emdr-lh-175{ line-height: 1.75; }
.emdr-lh-17{ line-height: 1.7; }
.emdr-w-80{ width: 80px; }

/* ========================================================================
   PAGE-SPECIFIC: kriznitim.html
   ======================================================================== */
/* kriznitim.html */
.kt-card {
    border: 1px solid rgba(197,160,89,.22);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.kt-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0,35,73,.10);
    border-color: rgba(197,160,89,.42);
}
.kt-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(197,160,89,.14);
    border: 1px solid rgba(197,160,89,.35);
    color: #C5A059;
    flex: 0 0 auto;
}
.kt-list li { margin-bottom: .6rem; }

/* ========================================================================
   PAGE-SPECIFIC: terapeuti.html
   ======================================================================== */
/* terapeuti.html */
.table-sort {
    cursor: pointer;
    user-select: none;
}
.table-sort .sort-indicator {
    opacity: 0.55;
    font-size: 0.85em;
    margin-left: 0.35rem;
}
.table-sort.active .sort-indicator { opacity: 1; }
.sticky-tools { position: sticky; top: 84px; z-index: 20; }
.therapists-table thead th { white-space: nowrap; }
.therapists-table thead.therapists-thead th {
    background: var(--emdr-teget);
    color: #fff;
    border-bottom: 2px solid rgba(197, 160, 89, 0.55);
    font-weight: 800;
    letter-spacing: 0.2px;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
}
.therapists-table thead.therapists-thead th.table-sort:hover { color: var(--emdr-zlatna-light); }
.therapists-table thead.therapists-thead th.table-sort.active { color: var(--emdr-zlatna); }
.therapists-table thead.therapists-thead th .sort-indicator { opacity: 0.9; font-weight: 900; }
.therapists-table tbody tr:hover td { background: rgba(197, 160, 89, 0.08); }
.therapists-table a[href^="mailto:"] { color: var(--emdr-teget); }
.therapists-table a[href^="mailto:"]:hover,
.therapists-table a[href^="mailto:"]:focus { color: var(--emdr-zlatna); }
.therapists-table tbody td { vertical-align: middle; }
.pagination.pagination-emdr { gap: 0.35rem; }
.pagination.pagination-emdr .page-link {
    border-radius: 999px;
    border: 1px solid rgba(0, 35, 73, 0.12);
    color: #002349;
    background: #fff;
    padding: 0.45rem 0.75rem;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.pagination.pagination-emdr .page-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0,35,73,0.10);
    border-color: rgba(197, 160, 89, 0.55);
}
.pagination.pagination-emdr .page-item.active .page-link {
    background: #C5A059;
    border-color: #C5A059;
    color: #fff;
    box-shadow: 0 12px 26px rgba(197,160,89,0.28);
}
.pagination.pagination-emdr .page-item.disabled .page-link {
    opacity: 0.45;
    background: #f4f7f9;
}
.pagination.pagination-emdr .page-link:focus { box-shadow: 0 0 0 0.25rem rgba(197,160,89,0.25); }
.cert-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.4rem 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    font-size: 0.85rem;
    line-height: 1.2;
}

/* ========================================================================
   PAGE-SPECIFIC: aktivnosti.html
   ======================================================================== */
/* aktivnosti.html */
.years-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    border: 1px solid rgba(0,35,73,.14);
    background: #fff;
    color: #002349;
    font-weight: 800;
    font-size: .9rem;
    transition: .2s ease;
}
.years-pill:hover { border-color: rgba(197,160,89,.55); transform: translateY(-1px); }
.years-pill.active {
    background: #002349;
    color: #fff;
    border-color: rgba(197,160,89,.55);
}
.activity-card {
    border: 1px solid rgba(197,160,89,.25);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.activity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0,35,73,.10);
    border-color: rgba(197,160,89,.45);
}
.activity-thumb {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(197,160,89,.25);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.activity-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.activity-thumb.logo img {
    object-fit: contain;
    padding: 14px;
}
.activity-title { color:#002349; }
.meta-chip {
    display:inline-flex; align-items:center; gap:.5rem;
    padding:.35rem .65rem; border-radius: 999px;
    background: rgba(0,35,73,.06);
    border: 1px solid rgba(0,35,73,.10);
    font-weight:700; font-size:.85rem;
    color:#002349;
}
.meta-chip.gold {
    background: rgba(197,160,89,.14);
    border-color: rgba(197,160,89,.35);
    color:#C5A059;
}

.emdr-img-modal-contain{
    display: block;
    max-height: 78vh;
    object-fit: contain;
}
