:root {
    --accent: #C8A97E;
    --accent-soft: rgba(200,169,126,0.15);
    --dark: #0b0b0b;

    --bg: #0E0E0E;
    --surface: rgba(255,255,255,0.04);

    --white: #ffffff;
    --text: #EAEAEA;
    --muted: #9F9F9F;

    --border: rgba(255,255,255,0.08);

    --shadow:
        0 10px 30px rgba(0,0,0,0.25),
        0 30px 80px rgba(0,0,0,0.45);

    --radius: 28px;

    --transition:
        cubic-bezier(0.22, 1, 0.36, 1);

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Plus Jakarta Sans';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}



/* Prisiljavamo .font-serif klasu da radi samo tamo gde je stvarno stavljena na nivou HTML-a */
.font-serif {
    font-family: var(--font-serif) !important;
}

body {
    position: relative;
    background: var(--bg);
    overflow-x: hidden;
    
    font-family: var(--font-sans), sans-serif;
}

/* --- GLAVNA POPRAVKA ZA NASLOVE I ISTAKNUTE DIJELOVE ---
   Ova pravila presreću tvoje HTML naslove i rešavaju problem sa skrinšota.
*/

/* Svi naslovi na sajtu (uključujući "Sadržaji i Opremljenost") postaju moderni, čisti i stabilni */
 h1, h2, h3, h4, h5, h6, 
.section-intro h2, .about-header h2, .location-text-side h2 {
    font-weight: 500 !important; 
    letter-spacing: -0.01em;
} 

/* Gde god ti u HTML-u unutar naslova stoji <span> ili <i> (kao za "i udobnosti"),
   pretvaramo ih u prelepu dekoraciju. Više se ne seku ružno, nego izgledaju kao namerni luksuzni detalj.
*/
.hero-massive-title span,
.section-intro h2 span,
.about-header h2 span,
.location-text-side h2 span,
.cta-text-column h2 i {
    font-family: var(--font-serif) !important;
    font-style: italic !important;
    font-weight: 500 !important; /* Serif ostaje elegantan i koso zakrivljen */
    color: var(--accent) !important; /* Automatski ga bojimo u tvoju zlatnu nijansu */
    letter-spacing: 0.02em;
    padding-left: 4px; /* Blagi razmak da se kosa slova ne lepe za obična */
}

/* Popravka za badgeve i tagove opremljenosti da fiksno ostanu u sans fontu */
.spec-item, .features-tags span, .card-rating span {
    font-family: var(--font-sans) !important;
    font-weight: 500;
}


/* --- AMBIENT LIGHT BLOBS --- */
body::before{
    content:'';
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at 15% 20%, rgba(200,169,126,0.10), transparent 45%),
        radial-gradient(circle at 85% 25%, rgba(255,255,255,0.05), transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(200,169,126,0.06), transparent 55%);
    pointer-events:none;
    z-index:0;
}

















/* --- CINEMATIC HERO SEKCIJA --- */
.hero-cinematic {
    position: relative;
    width: 100%;
    min-height: 150vh; /* Povećan prostor za skrol kako bi animacija bila tečnija */
    background-color: var(--dark);
    padding-top: 140px; /* Gura sav sadržaj niže od navigacije */
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
}

/* Tekstualni sadržaj na vrhu */
.hero-upper-content {
    position: relative;
    z-index: 10; /* Osigurava da je tekst UVEK iznad svega */
    text-align: center;
    padding-bottom: 60px; /* Čist razmak između dugmadi i početka videa */
}

.hero-eyebrow-luxury {
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpReveal 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-massive-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    color: var(--white);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 35px;
}

.hero-massive-title span {
    color: var(--accent);
    font-style: italic;
}

.hero-minimal-lead {
    font-size: 16px;
    color: #a0a0b1;
    max-width: 600px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
    font-weight: 300;
    padding: 0 20px;
}

/* Dugmad */
.hero-luxury-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.btn-hero-discover {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    font-weight: 500;
}

.btn-hero-discover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.btn-hero-discover:hover::after {
    background: var(--accent);
}

.btn-hero-booking-trigger {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--accent);
    color: var(--dark);
    text-decoration: none;
    padding: 18px 38px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(200, 169, 126, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-hero-booking-trigger:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(200, 169, 126, 0.3);
}

/* --- VIDEO STRUKTURA I ANIMACIJA ŠIRENJA --- */
.hero-video-sticky-wrapper {
    position: sticky;
    top: 35vh;
    width: 100%;
    height: 60vh; /* Malo smanjena početna visina radi dramatičnijeg efekta rasta */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    z-index: 1; /* Video je u pozadini dok skrol ne preuzme kontrolu */
    view-timeline-name: --video-scroll;
    view-timeline-axis: block;
    margin-top: 80px; /* Dodatni fizički razmak od gornjeg teksta */
}

.hero-video-frame {
    width: 50%; /* Smanjeno na 50% za moćniji bioskopski kontrast na početku */
    height: 100%;
    border-radius: 30px !important; /* Elegantniji, zaobljeniji ćoškovi na manjem videu */
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    
    /* Sprečavanje prelamanja i bagova na pretraživačima */
    isolation: isolate;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    
    /* Skrol animacija rasta */
    animation: timelineExpandVideo linear forwards;
    animation-timeline: --video-scroll;
    animation-range: entry 0% cover 45%; 
}

.hero-main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* Skrol animacija zumiranja kontrole */
    animation: timelineVideoZoom linear forwards;
    animation-timeline: --video-scroll;
    animation-range: entry 0% cover 45%;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,11,11,0.5), transparent, rgba(11,11,11,0.9));
    z-index: 2;
    pointer-events: none;
}

/* Kaskadni uvodni efekat pri učitavanju stranice */
@keyframes fadeUpReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* Dinamička ekspanzija videa sa 50% na 100% širine ekrana */
@keyframes timelineExpandVideo {
    0% {
        width: 50%;
        height: 60vh;
        border-radius: 30px;
    }
    15% {
        border-radius: 30px; /* Zadržava zaobljenje u prvom trenutku skrola */
    }
    100% {
        width: 100%;
        height: 100vh; /* Prerasta u pun ekran */
        border-radius: 0px; /* Gubi zaobljenje kada postane full-screen pozadina */
    }
}

@keyframes timelineVideoZoom {
    0% {
        transform: scale(1.2); /* Počinje sa malo većim zumom */
    }
    100% {
        transform: scale(1); /* Smiruje se na normalu na kraju skrola */
    }
}

/* --- RESPONZIVNOST --- */
@media (max-width: 992px) {
    .hero-cinematic { min-height: 140vh; padding-top: 120px; }
    .hero-video-sticky-wrapper { height: 45vh; top: 35vh; margin-top: 20px; }
    .hero-video-frame { width: 85%; border-radius: 16px; }
    .hero-luxury-actions { flex-direction: column; gap: 20px; }
    @keyframes timelineExpandVideo {
        0% { width: 85%; height: 45vh; border-radius: 16px; }
        100% { width: 100%; height: 100vh; border-radius: 0px; }
    }
}









/* Kontejner i bazični stilovi */
.apartments-section {
    padding: 50px 8%;
    background-color: #F8F8F8; /* Svetla podloga sa slike */

}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mali tekst iznad naslova */
.section-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 5px;
    color: #C8A97E;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}



.section-intro h2 {
    font-size: 48px; 
    font-weight: 400;
    color: #111111;
    margin-bottom: 20px;
    line-height: 1.2;
}




.section-intro h2 span {
    color: #C8A97E;
    font-style: italic;
    font-weight: 400;
}


.section-intro p {
    color: #717182;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* Grid raspored */
.apartments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

/* Stil kartice */
.card {
    background: #ffffff;
    border-radius: 12px; /* Blago zaobljeni uglovi sa slike */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

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

.card-image {
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    position: relative;
}


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

.card:hover .card-image img {
    transform: scale(1.05);
}




.card-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

.card-rating i {
    color: #C8A97E; 
    font-size: 14px;
}

.card-rating span {
    color: #111111;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-sans);
}


.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 22px;
    color: #111111;
    margin-bottom: 10px;
}

.apt-description {
    font-size: 14px;
    color: #717182;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 300;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-specs{
    display: flex;
    gap: 15px;
}

.spec-item i {
    font-size: 18px;
    color: #C8A97E;
    stroke-width: 1.5;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #717182;
    font-size: 13px;
    font-weight: 400;
}

/* Footer kartice (Cena i Link) */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.price {
    font-size: 14px;
    color: #717182;
}

.price b {
    font-size: 18px;
    color: #111111;
    font-weight: 600;
}

.view-link {
    color: #C8A97E; /* Tvoja akcent boja */
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive za mobilni */
@media (max-width: 992px) {
    .apartments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .apartments-grid { grid-template-columns: 1fr; }
}

.view-all-container {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 50px;
}

.btn-soft {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    
    /* Pozadina i okvir koji se vide na beloj podlozi */
    background-color: #ffffff; 
    border: 1px solid rgba(200, 169, 126, 0.4); /* Nežna zlatna ivica */
    color: #111111;
    
    padding: 18px 45px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    
    /* Zaobljenje i mekoća */
    border-radius: 50px; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02); /* Minimalna senka */
}

.btn-soft i {
    font-size: 16px;
    color: #C8A97E;
    transition: transform 0.3s ease;
}

/* Hover efekat koji dugmetu daje "život" */
.btn-soft:hover {
    background-color: #C8A97E; /* Puni se zlatnom bojom */
    color: #ffffff;            /* Tekst prelazi u belo */
    border-color: #C8A97E;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(200, 169, 126, 0.25); /* Jači zlatni sjaj */
}

.btn-soft:hover i {
    color: #ffffff; /* Strelica pobeli zajedno sa tekstom */
    transform: translateX(5px);
}









.experience-section {
    padding: 100px 8%;
    background-color: var(--white);
    overflow: hidden;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.about-media-block {
    position: relative;
}

.about-media-block img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    transition: transform 0.5s ease;
}

.about-media-block:hover img {
    transform: scale(1.03);
}

.about-floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--dark);
    color: var(--white);
    padding: 22px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.about-floating-badge span {
    font-size: 38px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.about-floating-badge p {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
    line-height: 1.3;
}



.about-header h2 {
    margin-top: 8px;
    margin-bottom: 15px;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--dark);
}

.about-header h2 span { 
    color: var(--accent); 
    font-style: italic;
    font-weight: 400;
}

.about-header p {
    font-size: 14px;
    color: #717182;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 10px;
}

.about-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-info-blocks h4{
    font-size: 1.75em !important;
}

.info-luxury-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    align-items: start;
    border: 1px solid rgba(17, 17, 17, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    cursor: pointer;
}

.info-luxury-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 169, 126, 0.2);
    box-shadow: 0 20px 40px rgba(200, 169, 126, 0.06);
}

.info-luxury-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent);
    border-radius: 16px 0 0 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-luxury-card:hover::before {
    opacity: 1;
}

.card-icon-wrap {
    width: 54px;
    height: 54px;
    background: #FAF9F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent);
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 169, 126, 0.1);
}

.info-luxury-card:hover .card-icon-wrap {
    background: var(--accent);
    color: var(--white);
}

.card-body-content h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.card-location-text {
    font-size: 15px !important;
    color: #515162 !important;
    line-height: 1.7 !important;
    font-weight: 300;
}

.card-location-text span {
    color: var(--dark);
    font-weight: 500;
}

.card-location-text b {
    color: var(--dark);
    font-weight: 500;
}

.features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.features-tags span {
    background: #FAF9F6;
    color: #414152;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(17, 17, 17, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.features-tags span i {
    color: var(--accent);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.features-tags span:hover {
    background: var(--dark) !important;
    color: var(--white) !important;
    border-color: var(--dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(17, 17, 17, 0.15) !important;
}

.features-tags span:hover i {
    color: var(--accent);
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .info-luxury-card {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px;
    }
    .card-icon-wrap {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}


@media (max-width: 1024px) {
    .about-main-grid { grid-template-columns: 1fr; gap: 45px; }
    .about-media-block img { height: 380px; }
    .about-floating-badge { bottom: 15px; right: 15px; }
}



.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.reveal-on-scroll.active.delay-1 {
    transition-delay: 0.15s !important;
}

.reveal-on-scroll.active.delay-2 {
    transition-delay: 0.3s !important;
}














.gallery-section {
    padding: 100px 8%;
    background-color: #ffffff; 
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Elegantni tekst preko slike na hover */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-overlay span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transform: translateY(10px);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover efekti */
.gallery-item:hover img {
    transform: scale(1.04);
}

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

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Mobilna responzivnost */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .item-large, .item-wide {
        grid-column: span 1;
    }
}














.reviews-section {
    padding: 100px 8%;
    background-color: #F8F8F8;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
}

/* Zvezdice na vrhu - veće i sa razmakom do teksta */
.review-stars {
    color: var(--accent);
    font-size: 18px; /* Veće zvezdice */
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Tekst recenzije dominira karticom */
.review-text {
    color: #515162;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 30px;
    flex-grow: 1; /* Gura dno kartice na dole da sve budu iste visine */
}

/* Dno kartice: Ime levo, datum desno */
.review-footer-meta {
    display: flex;
    justify-content: space-between; /* Ime levo, datum skroz desno */
    align-items: center;
    border-top: 1px solid #f3f3f5;
    padding-top: 20px;
}

.review-footer-meta h5 {
    font-size: 15px;
    color: var(--dark);
    margin: 0;
    font-weight: 500;
}

/* Svetliji, suptilan datum */
.review-date {
    font-size: 12px;
    color: #a0a0b1; /* Svetlija siva boja */
    font-weight: 400;
    font-family: var(--font-sans);
}

/* --- ANIMACIJA NA HOVER --- */
.review-card:hover {
    top: -10px;
    box-shadow: 0 20px 40px rgba(200, 169, 126, 0.12);
}

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

@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .review-footer-meta { flex-direction: row; } /* Zadržava liniju i na telefonu */
}











.premium-cinematic-cta {
    padding: 140px 8%;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
}

/* --- LEVA STRANA: TEKST I DUGME --- */
.cta-luxury-tag {
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 25px;
}

.cta-text-column h2 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 30px;
    font-weight: 400;
}

.cta-text-column h2 i {
    color: var(--accent);
    font-family: var(--font-serif);
}

.cta-text-column p {
    font-size: 16px;
    color: #a0a0b1;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 45px;
    max-width: 520px;
}

/* Brutalno interaktivno dugme */
.btn-luxury-cta {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    color: var(--white);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.4s ease;
}

.btn-arrow-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    background: transparent;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-luxury-cta:hover {
    color: var(--accent);
}

.btn-luxury-cta:hover .btn-arrow-circle {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
    transform: rotate(45px) scale(1.05);
}

/* --- DESNA STRANA: ASIMETRIČNE SLIKE I BEDŽ --- */
.cta-visual-column {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
}

.cta-image-wrapper {
    position: absolute;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.cta-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,17,17,0.3), transparent);
    transition: opacity 0.4s ease;
}

/* Glavna velika slika pozadi */
.img-main {
    width: 70%;
    height: 420px;
    left: 0;
    top: 20px;
    z-index: 2;
}

/* Manja slika koja se preklapa ispred */
.img-secondary {
    width: 50%;
    height: 300px;
    right: 0;
    bottom: 20px;
    z-index: 4;
    border: 6px solid var(--dark); /* Razdvaja dve slike */
}

/* Plutajući zlatni bedž */
.cta-floating-badge-luxury {
    position: absolute;
    top: 40%;
    left: 45%;
    z-index: 5;
}

.badge-inner {
    background: var(--accent);
    color: var(--dark);
    padding: 18px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(200, 169, 126, 0.3);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    animation: ctaFloat 4s ease-in-out infinite;
}

/* --- ANIMACIJE NA SKROL --- */
/* Kada sekcija dobije .active klasu preko skrola, slike rade suptilan kontra-zum */
.premium-cinematic-cta.active .img-main img {
    transform: scale(1.04) rotate(-0.5deg);
}

.premium-cinematic-cta.active .img-secondary img {
    transform: scale(1.06) rotate(0.5deg);
}

/* Hover efekat na pojedinačne slike */
.cta-image-wrapper:hover img {
    transform: scale(1.1) !important;
}

/* Beskonačna animacija lebdenja za bedž */
@keyframes ctaFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* --- RESPONZIVNOST --- */
@media (max-width: 1024px) {
    .cta-split-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .cta-text-column {
        text-align: center;
    }
    .cta-text-column p {
        margin-inline: auto;
    }
    .cta-visual-column {
        height: 480px;
    }
}

@media (max-width: 576px) {
    .cta-visual-column {
        height: 380px;
    }
    .img-main { width: 80%; height: 300px; }
    .img-secondary { width: 60%; height: 200px; }
    .cta-floating-badge-luxury { left: 35%; top: 35%; }
}













.home-location-section {
    padding: 100px 8%;
    background-color: #FAF9F6;
}

.location-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-text-side h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 20px;
}

.location-text-side h2 span {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

.location-text-side p {
    color: #616172;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.location-features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.loc-list-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.loc-list-item i {
    font-size: 24px;
    color: var(--accent);
    margin-top: 3px;
}

.loc-list-item h5 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 500;
}

.loc-list-item p {
    font-size: 14px;
    color: #717182;
    margin: 0;
}

/* Desna strana - Luksuzni brojevi */
.location-stats-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stats-luxury-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(17, 17, 17, 0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stats-luxury-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(200, 169, 126, 0.08);
    border-color: rgba(200, 169, 126, 0.2);
}

.stat-number {
    font-size: 46px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number span {
    font-size: 16px;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--dark);
    margin-left: 4px;
}

.stats-luxury-card p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #717182;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .location-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 500px) {
    .location-stats-side {
        grid-template-columns: 1fr;
    }
}












