/* ==========================================================================
   FAZA 0: TEMELJI I VARIJABLE
   ========================================================================== */
:root {
    /* --- BOJE --- */
    --clr-navy: #081b36;
    --clr-gold: #c2a361;
    --clr-gold-light: #e0c58a;
    --clr-white: #ffffff;
    --clr-dark: #1a1a1a;
    --clr-bg-light: #f4f7f6; /* Blaga siva za pozadine sekcija */
    --nav-font-mob: 14px;  /* Veličina slova u mobilnom meniju */

    /* --- DIMENZIJE SAJTA (ZIDOVI) --- */
    --container-width: 1240px;      /* Max širina sadržaja */
    --container-padding: 20px;     /* Razmak od ivica ekrana na mobilnom */

    /* --- HEADER & LOGO (Glavna kontrola) --- */
    --logo-height: 100px;           /* VELIČINA LOGA NA DESKTOPU */
    --logo-height-mob: 75px;       /* VELIČINA LOGA NA MOBILNOM */
    --header-padding: 20px;        /* Razmak iznad i ispod loga */
    --header-bg: rgba(8, 27, 54, 0.95);

    /* --- RAZMACI IZMEĐU SEKCIJA --- */
    --section-spacer: 80px;        /* Razmak između npr. Hero i Filteri */
    --section-spacer-mob: 40px;    /* Razmak na mobilnom */

    /* --- OSTALO --- */
    --font-main: 'Montserrat', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-real-height: 110px;      /* Visina headera na desktopu */
--header-real-height-mob: 80px;   /* Visina headera na mobilnom */
}

/* --- OSNOVNI RESET (Da ništa ne beži desno) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ovo garantuje da padding ne širi sajt */
}

body {
    font-family: var(--font-main);
    overflow-x: hidden; /* OVO JE OSIGURAČ: Ne dozvoljava skrolovanje desno u prazno */
    width: 100%;
}

/* --- UNIVERZALNI KONTEJNER (Tvoj spas) --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==========================================================================
   FAZA 1: LUKSUZNI HEADER (Utegnut layout)
   ========================================================================== */

.header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    background-color: transparent; 
    padding: var(--header-padding) 0; 
    transition: var(--transition-smooth); 
}

/* Stanje kada se skroluje - TVOJ STIL JE OSTAVŠTEN */
.header.scrolled { 
    background-color: var(--clr-navy); 
    padding: var(--header-padding-scrolled) 0; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); 
    border-bottom: 1px solid rgba(197, 160, 89, 0.2); 
}


/* KONTEJNER: Glavni zid koji drži logo i meni razdvojene */
.header__container {
    width: 100%;
    display: flex;
    justify-content: space-between; /* RAZMAK: Logo levo, Meni desno */
    align-items: center;
    padding: var(--header-padding) 0;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important; /* Centriranje logoa u plavoj traci */
    min-height: 100px !important;
    padding: 10px 0 !important;
}

.header__logo {
    display: flex;
    align-items: center;
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0; /* Ne dozvoljava logu da se skupi */
}

.header__logo img { 
    height: var(--logo-height); 
    width: auto; 
    transition: var(--transition-smooth); 
    display: block; 
}

.header.scrolled .header__logo img { 
    height: var(--logo-height-scrolled); 
}

/* --- NAVIGACIJA: Osigurač da meni uvek bude desno --- */
.header__nav {
    display: flex;
    align-items: center;
}

.header__menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px; /* Razmak između linkova */
}

/* --- TVOJI STILIZOVANI LINKOVI I DUGMAD (NIŠTA NISAM BRISAO) --- */
.header__link { 
    color: var(--clr-white); 
    font-size: 13px; 
    font-weight: 500; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    text-decoration: none; 
    transition: var(--transition-smooth); 
    position: relative; 
    padding: 5px 0; 
}

.header__link::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 1px; 
    background-color: var(--clr-gold); 
    transition: var(--transition-smooth); 
}

.header__link:hover { color: var(--clr-gold); }
.header__link:hover::after { width: 100%; }

/* Dugme "Ponudite nekretninu" */
.header__btn { 
    display: inline-block; 
    padding: 12px 24px; 
    border: 1px solid var(--clr-gold); 
    color: var(--clr-gold); 
    font-size: 12px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    text-decoration: none; 
    transition: var(--transition-smooth); 
    margin-left: 20px; /* Razmak od zadnjeg linka u meniju */
}

.header__btn:hover { 
    background-color: var(--clr-gold); 
    color: var(--clr-navy); 
}

/* MOBILNI HAMBURGER (Samo stilovi, ne menjaš ništa) */
.header__toggle { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 20px; position: relative; z-index: 1001; }
.header__toggle span { display: block; position: absolute; height: 2px; width: 100%; background: var(--clr-white); border-radius: 2px; left: 0; transition: .25s ease-in-out; }
.header__toggle span:nth-child(1) { top: 0px; }
.header__toggle span:nth-child(2) { top: 9px; }
.header__toggle span:nth-child(3) { top: 18px; }

/* ==========================================================================
   FAZA 2: HERO SEKCIJA
   ========================================================================== */

.hero { 
    position: relative; 
    height: 100vh; 
    min-height: 600px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    background-image: url('naslovna.webp'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}

/* Čist naslov bez !important krpljenja */
.hero__title { 
    font-size: clamp(2.5rem, 5vw, 4.5rem); 
    font-weight: 600; 
    color: var(--clr-white); 
    line-height: 1.2; 
    margin-bottom: 24px; 
    text-shadow: 0 4px 15px rgba(0,0,0,0.5); 
}

.hero__subtitle { 
    font-size: 14px; 
    font-weight: 600; 
    color: var(--clr-white); 
    text-transform: uppercase; 
    letter-spacing: 10px; 
    opacity: 0.9; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
}
/* ==========================================================================
   FAZA 2: HERO SEKCIJA
   ========================================================================== */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; background-image: url('naslovna.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; }
/* --- UKLANJANJE TAMNOG OVERLAY-A SA POCETNE --- */
.hero__overlay {
    background: transparent !important; /* Brise tamni sloj */
    opacity: 1 !important;
}

/* --- ČIST, LUKSUZNI NASLOV (QUIET LUXURY) --- */
.hero__title { 
    font-family: 'Montserrat', sans-serif !important; 
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important; 
    font-weight: 600 !important; 
    color: #ffffff; 
    line-height: 1.2; 
    margin-bottom: 24px; 
    text-shadow: 0 4px 15px rgba(0,0,0,0.5) !important; 
}

/* --- LUKSUZNI PODNASLOV --- */
.hero__subtitle { 
    font-family: 'Montserrat', sans-serif !important; 
    font-size: 14px; 
    font-weight: 600 !important; 
    color: #ffffff; 
    text-transform: uppercase; 
    letter-spacing: 10px !important; 
    opacity: 0.9; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important; 
}
/* ==========================================================================
   FAZA 3: FILOZOFIJA (Sistemski sređeno)
   ========================================================================== */
.philosophy { 
    background-color: #ffffff; 
    /* Koristimo varijablu za razmak izmedju sekcija */
    padding: var(--section-spacer) 0; 
    text-align: left; 
}

.philosophy__container { 
    max-width: var(--container-width); 
    margin: 0 auto;
    padding: 0 20px; /* Sigurnost za mobilni */
}

.philosophy__title { 
    font-family: var(--font-sans); 
    font-size: clamp(2rem, 3.5vw, 3rem); 
    font-weight: 700; 
    color: var(--clr-navy); 
    line-height: 1.3; 
    margin-bottom: 32px; 
    text-align: left;
}

.philosophy__divider { 
    width: 25px; 
    height: 2px; 
    background-color: var(--clr-gold); 
    margin: 0 0 30px 0; 
}

.philosophy__subtitle {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.6;
    color: var(--clr-navy);
    font-weight: 300; /* Prefinjena, tanja slova */
    max-width: 950px; 
    margin: 0;
    text-align: left;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   FAZA 4: IZDVOJENE NEKRETNINE (JBL Layout)
   ========================================================================== */
.featured { background-color: #fcfcfc; padding: 50px 0; }
.featured__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.featured__header-text { max-width: 600px; }
.featured__title { font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 3rem); color: var(--clr-navy); line-height: 1.2; margin-bottom: 15px; }
.featured__subtitle { font-size: 15px; color: #666; line-height: 1.6; }
.featured__btn { display: inline-flex; align-items: center; gap: 10px; background-color: var(--clr-navy); color: var(--clr-white); padding: 14px 28px; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; text-decoration: none; border-radius: 4px; transition: var(--transition-smooth); }
.featured__btn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.featured__btn:hover { background-color: var(--clr-gold); }
.featured__btn:hover svg { transform: translateX(5px); }

.featured__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.property-card { background: var(--clr-white); border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: transform 0.4s ease, box-shadow 0.4s ease; border: 1px solid #f0f0f0; }
.property-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.property-card__img-wrapper { position: relative; height: 260px; overflow: hidden; }
.property-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.property-card:hover .property-card__img { transform: scale(1.08); }
.property-card__badge { position: absolute; top: 20px; left: 20px; background-color: var(--clr-navy); color: var(--clr-white); padding: 6px 14px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; border-radius: 20px; z-index: 2; }
.property-card__badge--rent { background-color: var(--clr-gold); }
.property-card__fav { position: absolute; top: 20px; right: 20px; background: var(--clr-white); border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; box-shadow: 0 4px 10px rgba(0,0,0,0.1); color: #999; transition: var(--transition-smooth); }
.property-card__fav:hover { color: #ff4757; }
.property-card__fav svg { width: 18px; height: 18px; }
.property-card__price { position: absolute; bottom: 20px; right: 20px; background-color: rgba(8, 27, 54, 0.85); backdrop-filter: blur(4px); color: var(--clr-white); padding: 8px 16px; font-size: 20px; font-weight: 600; border-radius: 6px; z-index: 2; }
.property-card__price .currency { color: var(--clr-gold); font-size: 16px; margin-right: 2px; }
.property-card__body { padding: 24px; }
.property-card__title { font-family: var(--font-serif); font-size: 22px; color: var(--clr-navy); line-height: 1.3; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 56px; }
.property-card__location { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #666; margin-bottom: 20px; }
.property-card__location svg { width: 16px; height: 16px; color: var(--clr-gold); }
.property-card__specs { display: flex; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; margin-bottom: 15px; }
.property-card__specs span { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--clr-dark); font-weight: 500; }
.property-card__specs svg { width: 18px; height: 18px; color: #888; }
.property-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background-color: #f4f4f4; color: #555; font-size: 11px; padding: 6px 12px; border-radius: 20px; }

/* ==========================================================================
   RESPONZIVNOST
   ========================================================================== */
@media screen and (max-width: 992px) {
   .header__container { 
    padding: 0 16px; 
    display: flex; 
    align-items: center; /* Ovo centrirala logo i "hamburger" meni po vertikali */
    justify-content: space-between; /* Razdvaja logo levo i meni desno */
    min-height: 50px; /* Dajemo dovoljno prostora za veći logo */
}

.header__logo img { 
    height: 65px; /* Povećano sa 45px na 65px da bi se zapravo video "Lux" efekat */
    width: auto; 
    display: block;
    margin: 10px 0; /* Dodaje malo prostora iznad i ispod da ne dodiruje ivice ekrana */
}

.header__toggle { 
    display: block; 
}
    .header__nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background-color: var(--clr-navy); display: flex; align-items: center; justify-content: center; transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
    .header__nav.active { right: 0; }
    .header__menu { flex-direction: column; gap: 30px; text-align: center; }
    .header__link { font-size: 18px; }
    .featured__grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 768px) {
    .hero__subtitle { letter-spacing: 1px; font-size: 15px; }
    .philosophy { padding: 80px 0; }
    .philosophy__subtitle { font-size: 16px; letter-spacing: 1px; max-width: 310px; margin: 0 auto; text-align: center; }
    .featured { padding: 60px 0; }
    .featured__header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .featured__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAZA 5: EDITORIAL USLUGE
   ========================================================================== */
.services {
    background-color: var(--clr-white);
    padding: 120px 0;
}

.services__header {
    text-align: center;
    margin-bottom: 70px;
}

.services__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--clr-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.services__divider {
    width: 60px;
    height: 2px;
    background-color: var(--clr-gold);
    margin: 0 auto;
}

/* Mreža - 3 kolone na kompjuteru */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    display: flex;
    flex-direction: column;
}

/* Magazinski format slike (4:5) koji smo dogovorili */
.service-card__img-box {
    width: 100%;
    aspect-ratio: 4 / 5; 
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #f5f5f5;
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

/* Spora, elegantna animacija kada pređeš mišem preko slike */
.service-card:hover .service-card__img {
    transform: scale(1.05); 
}

.service-card__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--clr-navy);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1; /* Gura link uvek na dno kartice da sve tri budu u ravni */
}

/* Elegantan link sa dugačkom strelicom */
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.service-card__link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.service-card__link:hover {
    color: var(--clr-navy);
}

.service-card__link:hover svg {
    transform: translateX(8px); /* Strelica klizi udesno na hover */
}

/* ==========================================================================
   RESPONZIVNOST ZA FAZU 5 (Telefoni i Tableti)
   ========================================================================== */
@media screen and (max-width: 992px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolone na tabletu */
    }
}

@media screen and (max-width: 768px) {
    .services {
        padding: 80px 0;
    }
    .services__grid {
        grid-template-columns: 1fr; /* 1 kolona na telefonu */
        gap: 50px;
    }
    .service-card__img-box {
        aspect-ratio: 1 / 1; /* Na telefonu slike postaju malo više kockaste da stanu lepše */
    }
}
/* ==========================================================================
  /* ==========================================================================
  /* ==========================================================================
   FAZA 6: LIDERSTVO I TIM (ČIST MINIMALIZAM BEZ OKVIRA)
   ========================================================================== */
.team {
    padding: 120px 0;
    background-color: #fcfcfc;
}

.team__header {
    text-align: center;
    margin-bottom: 80px;
}

.team__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--clr-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.team__divider {
    width: 60px;
    height: 2px;
    background-color: var(--clr-gold);
    margin: 0 auto 20px auto;
}

.team__subtitle {
    font-size: 14px;
    color: #666;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Mreža za Lidere (Uža da budu bliže) */
.team__leaders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 900px;
    margin: 0 auto 80px auto;
}

/* Mreža za Agente */
.team__agents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Čist kontejner za sliku */
.team-member__img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #f5f5f5;
    margin-bottom: 25px;
    overflow: hidden;
}

/* FOKUS NA GLAVU, PUNA BOJA I BLAGI ZUM NA HOVER */
.team-member__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; 
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .team-member__img {
    transform: scale(1.05);
}

/* Tipografija */
.team-member__info {
    text-align: center;
}

.team-member__name {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--clr-navy);
    margin-bottom: 8px;
}

.team-member__role {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-gold);
}

/* Responzivnost */
@media screen and (max-width: 992px) {
    .team__leaders { gap: 40px; max-width: 100%; }
    .team__agents { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 768px) {
    .team { padding: 80px 0; }
    .team__leaders { grid-template-columns: 1fr; gap: 50px; margin-bottom: 50px; }
    .team__agents { grid-template-columns: 1fr; gap: 50px; }
}
/* ==========================================================================
   FAZA 7: UTISCI KLIJENATA (SOCIAL PROOF)
   ========================================================================== */
.testimonials {
    padding: 140px 0;
    background-color: var(--clr-white);
}

.testimonials__header {
    text-align: center;
    margin-bottom: 90px;
}

.testimonials__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--clr-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.testimonials__divider {
    width: 60px;
    height: 2px;
    background-color: var(--clr-gold);
    margin: 0 auto;
}

/* Grid za 3 utiska */
.testimonials__grid:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* Slick dot styling - Luksuzni, diskretni izgled */
.testimonials .slick-dots {
    bottom: -60px;
}

.testimonials .slick-dots li button:before {
    color: var(--clr-gold);
    font-size: 8px;
    opacity: 0.3;
    transition: var(--transition);
}

.testimonials .slick-dots li.slick-active button:before {
    color: var(--clr-gold);
    opacity: 1;
    transform: scale(1.3);
}

/* Razmak između kartica unutar slidera */
.testimonials .slick-slide {
    margin: 0 30px;
    height: auto;
}

.testimonials .slick-track {
    display: flex !important;
    align-items: stretch;
}

/* Dizajn pojedinačne kartice utiska */
.testimonial-card {
    display: flex;
    flex-direction: column;
}

.testimonial-card__quote-mark {
    font-family: var(--font-serif);
    font-size: 80px;
    color: var(--clr-gold);
    line-height: 0.8;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-card__text {
    font-family: var(--font-serif);
    font-size: 16px; /* Dodatno smanjeno na zahtev klijenta */
    font-style: italic;
    color: var(--clr-navy);
    line-height: 1.7;
    margin-bottom: 40px;
    flex-grow: 1; /* Gura potpis na dno da sve budu u ravni */
}

.testimonial-card__author {
    border-top: 1px solid #f0f0f0;
    padding-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--clr-gold);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%); /* Blagi luksuzni ton */
}

.testimonial-card__meta {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-navy);
    margin-bottom: 5px;
}

.testimonial-card__role {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #888;
}

/* Responzivnost */
@media screen and (max-width: 992px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media screen and (max-width: 768px) {
    .testimonials { padding: 60px 0 !important; }
    .testimonials__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* Poništavamo horizontalni slajder na mobilnom da bi utisci išli jedan ispod drugog */
    .testimonials .slick-list {
        overflow: visible !important;
        padding: 0 !important;
    }
    .testimonials .slick-track {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        transform: translate3d(0, 0, 0) !important; /* Zaustavlja horizontalno pomeranje */
    }
    .testimonials .slick-slide {
        width: 100% !important;
        margin: 0 0 20px 0 !important; /* Razmak između utisaka */
        height: auto !important;
    }
    .testimonials .slick-dots {
        display: none !important; /* Sakrivamo tačkice jer više nije slajder */
    }
    .testimonial-card__text { font-size: 14px; margin-bottom: 15px !important; }
    .testimonial-card__quote-mark { font-size: 40px !important; margin-bottom: 5px !important; }
    .testimonial-card__author { padding-top: 15px !important; }
}
/* ==========================================================================
   FAZA 8: LUKSUZNI FOOTER (ZAVRŠNI PEČAT)
   ========================================================================== */
.footer {
    background-color: var(--clr-navy);
    color: rgba(255, 255, 255, 0.7); /* Blago prigušena bela za eleganciju */
    padding-top: 80px;
}

/* Grid od 4 kolone */
.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr; /* Prva i zadnja kolona su malo šire */
    gap: 40px;
    margin-bottom: 60px;
    align-items: start; /* Ključno: poravnava vrhove svih kolona u istu ravan */
}

/* Kolona 1: Brend */
.footer__logo {
    max-width: 140px;
    margin-top: -10px; /* Podiže logo da se reč FENIKS vizuelno poravna sa ostalim naslovima */
    margin-bottom: 12px; /* Smanjen razmak između logotipa i opisa */
    display: block;
    /* Ako je logo crn, ova komanda ga pretvara u savršeno beo: */
    filter: brightness(0) invert(1); 
}

.footer__desc {
    font-size: 14px;
    line-height: 1.8;
}

/* Naslovi kolona */
.footer__title {
    font-family: var(--font-sans);
    font-size: 14px;
    text-transform: uppercase;
    color: var(--clr-white);
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 0; /* Uklanja bilo kakav podrazumevani razmak sa vrha */
    margin-bottom: 30px;
}

/* Liste linkova (Kolona 2 i 3) */
.footer__links {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: 15px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-block;
}

/* Hover: Postaje zlatno i pomera se blago udesno */
.footer__links a:hover {
    color: var(--clr-gold);
    transform: translateX(5px);
}

/* Kontakt lista (Kolona 4) */
.footer__contact {
    list-style: none;
    padding: 0;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

/* Zlatne ikonice */
.footer__contact svg {
    width: 20px;
    height: 20px;
    color: var(--clr-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: var(--transition-smooth);
}

.footer__contact a:hover {
    color: var(--clr-gold);
}

/* Grupa za više telefona */
.footer__phones {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Donja zlatna linija i Copyright */
.footer__bottom {
    border-top: 1px solid rgba(197, 160, 89, 0.2); /* Tanka, providna zlatna linija */
    padding: 25px 0;
}

.footer__bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* Responzivnost */
@media screen and (max-width: 992px) {
    .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
}

@media screen and (max-width: 768px) {
    .footer { padding-top: 30px !important; }
    .footer__grid { grid-template-columns: 1fr; gap: 30px !important; margin-bottom: 30px !important; }
    .footer__title { margin-bottom: 15px !important; }
    .footer__links li { margin-bottom: 8px !important; }
    .footer__contact li { margin-bottom: 12px !important; }
    .footer__logo { margin-bottom: 15px !important; }
    .footer__bottom { padding: 15px 0 !important; }
    .footer__bottom-container { flex-direction: column; text-align: center; gap: 10px; }
}
/* ==========================================================================
   /* ==========================================================================
   STRANICA: NEKRETNINE (HERO I PRETRAGA)
   ========================================================================== */

/* ==========================================================================
   O NAMA - BANER STIL (BEZ SEČENJA SLIKE)
   ========================================================================== */
.about-banner {
    position: relative;
    width: 100%;
    background-color: #000;
    margin-top: 110px; /* Razmak za fiksni header */
    line-height: 0;
    overflow: hidden;
    border-radius: 12px; /* Diskretno zaobljene ivice za moderan izgled */
}

.about-banner__mobile-text {
    display: none; /* Sakriveno na desktopu po defaultu */
}

.about-banner__img {
    width: 100%;
    height: auto; /* Ključno: slika zadržava svoje proporcije */
    display: block;
}

@media screen and (max-width: 1024px) {
    .about-banner { padding-top: 80px; } /* Manji header na mobilnom/tabletu */
}

@media screen and (max-width: 768px) {
    .about-banner__mobile-text {
        display: block;
        position: absolute;
        bottom: 15%; /* Pozicionira tekst u donju trećinu slike gde je mrak */
        left: 0;
        width: 100%;
        text-align: center;
        color: #ffffff;
        font-size: 15px; /* Povećano za 15% po zahtevu */
        font-weight: 300;
        letter-spacing: 5px; /* Luksuzni razmak između slova */
        text-transform: uppercase;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        line-height: 1.4;
    }
}

.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--clr-white);
    line-height: 1.1;
    margin-bottom: 15px;
}

.page-hero__subtitle {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* 2. Glavni Kontejner Pretrage */
.search-filter {
    position: relative;
    margin-top: -60px;
    z-index: 10;
    margin-bottom: 80px;
}

.search-box {
    background-color: var(--clr-white);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    padding: 40px;
    border: 1px solid #f0f0f0;
}

/* --- POPRAVKA ZA MOBILNE NA POCETNOJ --- */
@media screen and (max-width: 768px) {
    .hero {
        /* Centriramo sliku po horizontalnoj (center) */
        /* i drzimo je na vrhu po vertikalnoj (top) - probaj 'top' ili 'center' */
        background-position: center top !important; 

        /* Smanjujemo visinu na mobilnom da ne 'proguta' ceo ekran */
        height: 80vh !important; 
        min-height: 450px !important;
    }

    /* Sredjujemo Naslov */
    .hero__title {
        font-size: 2.2rem !important; /* Kompaktnija velicina */
        line-height: 1.1 !important;
    }

    /* Sredjujemo Podnaslov - da 'iskoci' iz pozadine Hrama */
    .hero__subtitle {
        font-size: 16px !important; /* Malo vece nego sad */
        font-weight: 600 !important; /* Podebljana slova */
        color: #ffffff !important;
        opacity: 1 !important; /* Pun intenzitet bele boje */
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9) !important; /* CRNA SENKA koja pravi kontrast */
        letter-spacing: 2px !important; /* Smanjujemo razmak da bi stalo u red */
        display: inline-block;
        width: 100%;
        text-align: center;
    }
}
/* ==========================================================================
   OPTIMIZACIJA ZA MOBILNE (Hram & Podnaslov)
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* 1. POVEZIVANJE PORTRET SLIKE */
    /* Moramo biti precizniji sa selektorom da bi 'pobedili' liniju 46 */
    html body .hero {
        background-image: url('naslovna-mobile.webp') !important;
        background-position: center top !important; /* Centriramo Hram */
        height: 80vh !important; 
        min-height: 450px !important;
    }

    /* 2. POJAČAVANJE PODNASLOVA */
    /* " 30 godina tradicije " - da 'iskoci' iz pozadine Hrama */
    .hero__subtitle {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7) !important;
    padding-top: 15px !important;
    display: block;
    width: 100%;
    text-align: center;
}

    /* 3. OPTIMIZACIJA GLAVNOG NASLOVA */
    .hero__title {
        font-size: 2.2rem !important; /* Kompaktnija veličina, prelama se u dva reda */
        line-height: 1.1 !important;
    }
}
/* ==========================================================================
   JEZIČKI PREKIDAČ (SR | EN)
   ========================================================================== */
.header__lang {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px; /* Odvaja ga od zlatnog dugmeta */
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
}
.header__lang .lang-link {
    color: #ffffff !important;
    text-decoration: none;
    transition: var(--transition-smooth);
    opacity: 0.7;
}
.header__lang .lang-link.active {
    color: var(--clr-gold) !important;
    opacity: 1;
    font-weight: 700;
}
.header__lang .lang-link:hover {
    opacity: 1;
    color: var(--clr-gold) !important;
}
.lang-divider {
    color: #c5a059; /* Zlatna uspravna crta */
    opacity: 0.7;
}
.header__lang a:hover {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    /* 1. Smanjuje glavni prazan prostor (padding) za sve sekcije odjednom */
    .philosophy,
    .featured,
    .services,
    .team,
    .testimonials {
        padding: 40px 0 !important; 
    }

    /* 2. Smanjuje prostor iznad Footera */
    .footer {
        padding-top: 40px !important;
    }

    /* 3. Smanjuje prevelike razmake ispod naslova unutar samih sekcija */
    .services__header,
    .team__header,
    .testimonials__header,
    .featured__header {
        margin-bottom: 30px !important; /* Originalno su bili od 60 do 90px */
    }
}
/* FORSIRANJE MONTSERRAT FONTA NA CELOM SAJTU */
* {
    font-family: 'Montserrat', sans-serif !important;
}
/* --- FINO SMANJENJE HEADERA (Sve stranice) --- */
.header__container {
    /* Smanjujemo visinu na "zlatnu sredinu" (između onoga što je bilo i onog premalog) */
    min-height: 75px !important; 
    padding-top: 10px !important;
    padding-bottom: 10px !important;

    /* OBAVEZNO: Čuvamo raspored elemenata da ne nestane meni */
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Popravka za logo - da ne bude "skroz smanjen" nego taman */
.header__container img, .logo-img {
    max-height: 45px !important; /* Ovo je oko 10-15% manje od originala */
    width: auto !important;
}

/* Ako je meni (hamburger) bio prevelik, malo ga korigujemo */
.menu-toggle {
    scale: 0.9; /* Smanjuje ikonicu menija za tačno 10% */
}
/* 1. Resetuj visinu cele trake */
header.header, 
.header__container,
.header__nav {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

/* 2. Nateraj DIV i IMG da postanu veliki */
.header__logo, 
.header__logo a,
.header__logo img {
    height: 60px !important; /* Ovde kontrolišeš veličinu logoa */
    width: auto !important;
    max-height: 60px !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 3. Poravnaj hamburger dugme da bude u sredini nove trake */
.header__toggle {
    height: auto !important;
    align-self: center !important;
    margin: 0 !important;
}
/* FORCE RESET ZA MOBILNI MENI */
@media (max-width: 992px) {
    .header__nav ul li a, 
    .header__menu li a,
    .header__nav a {
        font-size: var(--nav-font-mob) !important; /* Ovo prisiljava browser da koristi tvojih 10px */
        line-height: 1.2 !important;
    }
    
    /* Smanjujemo i razmak između stavki da bi sve stalo */
    .header__menu {
        gap: 10px !important;
    }
}
/* BELA BOJA ZA JEZIK (SR/EN) */
.lang-switcher a, 
.nav-lang a, 
.language-selector a { 
    color: #ffffff !important; 
    font-weight: 600; 
    text-transform: uppercase;
    text-decoration: none;
}

/* Da pobeli i onaj znak "/" između njih ako postoji */
.lang-switcher span, .nav-lang span {
    color: rgba(255,255,255,0.7);
}/* FORCE FIX ZA LOGO - Poništava stare zabrane sa kraja fajla */
.header__logo img, 
.header__container img, 
.logo-img {
    height: var(--logo-height) !important;
    max-height: none !important; /* Ovo briše onih 45px i 60px */
    width: auto !important;
}

/* Precizno podizanje logotipa na desktopu (ne utiče na ostale elemente i stranice) */
@media (min-width: 1025px) {
    .header__logo { transform: translateY(-17px) !important; }
}

/* Fix za mobilni logo */
@media (max-width: 768px) {
    .header__logo img, 
    .header__container img {
        height: var(--logo-height-mob) !important;
    }
}

/* FORCE FIX ZA FILOZOFIJU - Poravnanje i tipografija */
.philosophy__container {
    margin: 0 auto !important; /* Vraća kontejner u centar ekrana */
    text-align: left !important;
}

.philosophy__subtitle, .philosophy p, .philosophy__title {
    text-align: left !important;
    margin-left: 0 !important; /* Poravnava tekst uz levu ivicu kontejnera */
}

.philosophy__subtitle {
    font-weight: 300 !important;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem) !important;
    line-height: 1.5 !important;
    max-width: 1100px !important; /* Ista širina kao pretraga nekretnina */
}

.philosophy__divider {
    margin-left: 0 !important; /* Pomera zlatnu liniju levo */
    margin-right: auto !important;
}

/* ==========================================================================
   STRANICA: O NAMA
   ========================================================================== */
.founder-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Asimetrija za premium izgled */
    align-items: center;
    gap: 80px;
    padding: 80px 0;
}

.founder-portrait {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 30px 30px 0 rgba(194, 163, 97, 0.1); /* Editorial dekorativni element */
    border: none !important;
}

.trust-block {
    position: relative;
}

.trust-block__quote {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--clr-navy);
    font-style: italic;
    margin-bottom: 35px;
    font-weight: 400;
    position: relative;
}

.trust-block__divider {
    width: 30px; /* Kratka, elegantna linija */
    height: 1px; /* Veoma tanka za premium izgled */
    background-color: var(--clr-gold);
    margin-bottom: 15px; /* Razmak do titule */
}

.trust-block__title {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.trust-block__name {
    font-size: 20px; /* Povećano ime osnivača */
    font-weight: 600;
    color: var(--clr-gold); /* Ime sada nosi zlatni akcenat */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-block__signature {
    font-family: 'Alex Brush', cursive;
    font-size: 3.5rem;
    color: var(--clr-gold);
    margin-top: 20px;
    display: block;
    opacity: 0.9;
}

.about-story {
    background: var(--clr-bg-light);
    padding: 60px 0;
    text-align: left;
}

.about-story__container {
    max-width: 950px;
    margin: 0 auto; /* Centriranje bloka da se odvoji od obe ivice */
}

.about-story__title { font-size: 2.5rem; margin-bottom: 20px; color: var(--clr-navy); }
.about-story__divider { width: 40px; height: 2px; background: var(--clr-gold); margin: 0 0 25px 0; }
.about-story__text { font-size: 1.05rem; line-height: 1.8; color: #555; margin-bottom: 20px; max-width: 800px; }

.about-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* Zbijenije za bolju koheziju */
    padding: 40px 0 100px;
}

.about-pillar {
    padding: 30px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.about-pillar:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.about-pillar__icon { 
    width: 42px;
    height: 42px;
    color: var(--clr-gold);
    margin-bottom: 20px; 
}
.about-pillar__icon svg { width: 100%; height: 100%; display: block; }
.about-pillar__title { margin-bottom: 15px; color: var(--clr-navy); font-size: 18px; }
.about-pillar__text { font-size: 14px; line-height: 1.6; color: #666; }

@media (max-width: 992px) {
    .founder-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
    .founder-portrait { width: 100%; max-width: 400px; margin: 0 auto; box-shadow: 15px 15px 0 rgba(194, 163, 97, 0.1); }
    .about-pillars__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   DODATAK: PRAVNE STRANICE I SOCIJALNI BOKSOVI
   ========================================================================== */
.legal-page {
    padding: 160px 0 100px;
    background-color: var(--clr-navy);
    color: #fff;
    min-height: 70vh;
}

.legal-back-btn {
    color: var(--clr-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    margin-bottom: 50px;
}

.legal-page__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--clr-gold);
    margin-bottom: 40px;
    line-height: 1.2;
}

.legal-content {
    line-height: 1.8;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 900px;
    text-align: justify;
}

.footer__social-boxes {
    display: flex;
    gap: 12px;
    margin-top: 15px; /* Smanjen razmak između teksta opisa i ikonica */
    justify-content: flex-start; /* Desktop: uvek uz levu ivicu */
}

.social-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.social-box:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: #ffffff; /* Izbegavamo tamno plavu kao što ste tražili */
    transform: translateY(-5px);
}

@media screen and (max-width: 768px) {
    .legal-page { padding: 120px 0 60px; }
    .legal-content { 
        font-size: 15px; 
        text-align: left; /* Bolje za mobilni */
        padding-right: 5px; 
    }
    .legal-back-btn { margin-bottom: 30px; }
}
