html {
    background: #004d40; /* ili ista boja kao body gradijent */
    min-height: 100%;
}

.uk-background-primary {
    background: #004d40; /* ili ista boja kao body gradijent */
}

.uk-logo img {
    height: 80px;
    width: 96px;
}

/* === STILOVI ZA ZAJEDNIČKE ELEMENTE (_main.php) === */

/* Navigacija */
.nav-premium {
    background-color: var(--background-dark) !important;
    transition: all 0.3s ease;
}
.nav-premium.uk-sticky-fixed {
    background-color: rgba(0, 56, 46, 0.9) !important;
    backdrop-filter: blur(10px);
}
.uk-navbar-nav > li > a {
    color: var(--text-secondary) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}
.uk-navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}
.uk-navbar-nav > li:hover > a::after,
.uk-navbar-nav > li.uk-active > a::after {
    width: 100%;
}
.uk-navbar-nav > li:hover > a, .uk-navbar-nav > li.uk-active > a {
    color: var(--accent-gold) !important;
}

/* Mega Menu (Desktop) */
.mega-menu-parent {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background-surface);
    border-top: 2px solid var(--accent-gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 40px 0;
}

.mega-menu-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(183, 139, 40, 0.05);
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mega-menu-item:hover {
    background: rgba(183, 139, 40, 0.15);
    border-color: var(--accent-gold);
    transform: translateX(5px);
    color: var(--accent-gold);
}

.mega-menu-icon {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.mega-menu-item:hover .mega-menu-icon {
    transform: translateX(5px);
}

.mega-menu-text {
    font-weight: 500;
    font-size: 0.95rem;
}


/* Mobilni Menu (Jednostavan i brz) */
.mobile-menu-simple {
    background-color: var(--background-dark);
    width: 300px;
    padding: 0;
}

.mobile-menu-simple .uk-offcanvas-close {
    color: var(--text-primary);
    top: 15px;
    right: 15px;
    padding: 8px;
    transition: all 0.2s ease;
}

.mobile-menu-simple .uk-offcanvas-close:hover {
    color: var(--accent-gold);
}

.mobile-nav-simple {
    padding: 60px 0 30px 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list > li {
    margin: 0;
    border-bottom: 1px solid rgba(183, 139, 40, 0.1);
}

.mobile-nav-list > li:last-child {
    border-bottom: none;
}

.mobile-nav-list > li > a {
    display: block;
    padding: 18px 25px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.mobile-nav-list > li > a:hover,
.mobile-nav-list > li.active > a {
    color: var(--accent-gold);
    background: rgba(183, 139, 40, 0.08);
    padding-left: 30px;
}

.mobile-nav-list .uk-nav-sub {
    background: rgba(0, 0, 0, 0.15);
    padding: 0;
    margin: 0;
}

.mobile-nav-list .uk-nav-sub li {
    margin: 0;
    border-bottom: 1px solid rgba(183, 139, 40, 0.05);
}

.mobile-nav-list .uk-nav-sub li:last-child {
    border-bottom: none;
}

.mobile-nav-list .uk-nav-sub a {
    padding: 14px 25px 14px 40px;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-secondary);
    font-weight: 400;
}

.mobile-nav-list .uk-nav-sub a:hover,
.mobile-nav-list .uk-nav-sub li.active a {
    color: var(--accent-gold);
    background: rgba(183, 139, 40, 0.1);
    padding-left: 45px;
}

/* Footer */
.footer-premium {
    background-color: var(--background-surface);
    border-top: 2px solid var(--accent-gold);
}
.footer-premium h4 {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 600;
}
.footer-premium .uk-list > li > a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}
.footer-premium .uk-list > li > a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}
.footer-premium .uk-list > li > a:hover {
    color: var(--accent-gold);
    padding-left: 15px;
}
.footer-premium .uk-list > li > a:hover::before {
    width: 8px;
}
.footer-copyright {
    padding: 20px 0;
    background-color: var(--background-dark);
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.footer-premium .uk-icon-button {
    background-color: var(--accent-gold);
    color: var(--background-dark);
}
.footer-premium .uk-icon-button:hover {
    background-color: #cea33e;
}

/* Google Font - Kombinacija za eleganciju i čitljivost */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;500&display=swap');

:root {
    --background-dark: #004d40; /* Najtamnija zelena iz gradijenta */
    --background-surface: #00382e; /* Još tamnija zelena za inpute i sl. */
    --text-primary: #FFFFFF; /* Čisti bijeli tekst */
    --text-secondary: #b2dfdb; /* Svijetlo-zelenkasta za sekundarni tekst */
    --accent-gold: #b78b28; /* Vaša prepoznatljiva zlatna */
    --border-color: #00695c; /* Tamnozelena za obrube */

    --font-heading: 'Playfair Display', serif; /* Elegantan font za naslove */
    --font-body: 'Roboto', sans-serif; /* Cist font za tekst */
}

body {
    background: linear-gradient(135deg, #004d40 0%, #00796b 100%);
    background-attachment: fixed; /* Da se gradijent ne pomiče sa scrollom */
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.8;
    scroll-behavior: smooth;
}

/* === GLAVNI ELEMENTI === */
.hero-contact-premium {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}
/* Overlay za zatamnjenje slike i bolji kontrast teksta */
.hero-contact-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, #004d40 0%, rgba(0, 77, 64, 0.6) 100%);
}

.hero-contact-premium .uk-container {
    position: relative; /* Da tekst bude iznad overlay-a */
}

.hero-contact-premium h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem; /* Velik, impresivan naslov */
    color: var(--text-primary);
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    margin-bottom: 0;
}
.hero-contact-premium p.uk-text-lead {
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin-top: 15px;
}


/* === SEKCJA S FORMOM I INFO === */
.contact-section-premium {
    padding: 100px 0;
}

.contact-section-premium h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}
.contact-section-premium .section-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px; /* Ograničena širina za bolju čitljivost */
    margin-bottom: 60px;
}

/* === FORMA === */
.uk-form-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.uk-input, .uk-textarea {
    background-color: var(--background-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.uk-input:focus, .uk-textarea:focus {
    outline: none;
    background-color: rgba(42, 42, 42, 0.5);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(183, 139, 40, 0.1), 0 0 15px rgba(183, 139, 40, 0.2);
    transform: translateY(-1px);
}
::placeholder {
    color: #555;
}

/* === GUMB === */
.uk-button-gold {
    background-color: transparent;
    color: var(--accent-gold); /* Zlatni tekst */
    border: 2px solid var(--accent-gold); /* Zlatni obrub */
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    padding: 15px 40px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Malo veći razmak za premium osjećaj */
    transition: all 0.3s ease;
}

.uk-button-gold:hover {
    background-color: var(--accent-gold); /* Pozadina postaje zlatna */
    color: var(--background-surface); /* Tekst postaje taman za maksimalni kontrast */
    box-shadow: 0 5px 20px rgba(183, 139, 40, 0.25);
    transform: translateY(-3px);
}

/* === INFO BLOK SA STRANE === */
.contact-info-block {
    padding-top: 10px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}
.info-card .icon-wrapper {
    color: var(--accent-gold);
    margin-right: 25px;
    padding-top: 5px;
}
.info-card h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}
.info-card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}
a.info-link {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}
a.info-link:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

/* === MAPA === */
.map-container-premium iframe {
    width: 100%;
    height: 450px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    filter: grayscale(100%) invert(95%) contrast(0.9); /* Efekt za tamnu temu */
}

/* Dodatak za stilizaciju dužih tekstova (kao u e-knjizi) */
.prose-style {
    font-size: 1.1rem; /* Standardna, ugodna veličina fonta (cca 17-18px) */
    line-height: 1.8;
    color: var(--text-secondary); /* Svjetlija boja za lakše čitanje na tamnoj pozadini */
}

/* Razmak između paragrafa unutar ovog stila */
.prose-style p {
    margin-bottom: 1.5em; 
}
.prose-style p:last-child {
    margin-bottom: 0;
}

/* Stil za podnaslove unutar teksta */
.prose-style h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary); /* Vraćamo jaču boju za podnaslove radi kontrasta */
    margin-top: 2.5em;
    margin-bottom: 1em;
}

/* Stil za citate ili istaknute dijelove */
.quote-style {
    border-left: 3px solid var(--accent-gold);
    padding-left: 25px;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* === STILOVI ZA CJENIK (AKORDEON) === */

.uk-accordion-title {
    background-color: var(--background-surface);
    padding: 20px 25px;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.uk-accordion-title:hover {
    background-color: #2a2a2a;
    border-color: var(--accent-gold);
    color: var(--text-primary);
}

/* Kada je stavka otvorena, naslov je aktivan */
.uk-open > .uk-accordion-title {
    background-color: var(--background-surface);
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.uk-accordion-content {
    padding: 25px;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 4px 4px;
    margin-top: -5px; /* Da se spoji s naslovom */
    margin-bottom: 15px;
}

/* Stil za pojedinačnu stavku u cjeniku */
.price-list-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}
.price-list-item:last-child {
    border-bottom: none;
}

.price-list-price {
    font-weight: 500;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* === STILOVI ZA NASLOVNICU (HOMEPAGE) === */

/* Hero sekcija sa slikom (zamjena za video) */
.hero-image-section {
    position: relative;
    height: 90vh; /* Visina skoro cijelog ekrana */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay preko slike za kontrast teksta */
.hero-image-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 77, 64, 0.8) 0%, rgba(0, 56, 46, 0.6) 100%);
    z-index: 1;
}

.hero-image-section .uk-container {
    position: relative;
    z-index: 2;
}

.hero-image-section h1 {
    font-size: 5rem;
    color: var(--text-primary); /* Osigurava bijelu boju */
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-image-section .uk-text-lead {
    color: var(--text-secondary); /* Ispravka boje za podnaslov */
}


/* Kartice za usluge */
.service-card-premium {
    background-color: var(--background-surface);
    padding: 35px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(183, 139, 40, 0.2);
    background-color: rgba(183, 139, 40, 0.05);
}

.service-card-premium .icon-wrapper {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-card-premium h3 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}

.service-card-premium p {
    color: var(--text-secondary);
    margin: 0;
    flex-grow: 1; /* Osigurava da tekst zauzme prostor */
}

.service-card-premium .card-link {
    margin-top: 20px;
    color: var(--accent-gold);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.service-card-premium .card-link span {
    transition: transform 0.2s ease;
    display: inline-block;
}
.service-card-premium:hover .card-link span {
    transform: translateX(5px);
}

/* Redizajnirani slider za testimonijale */
.testimonial-slider .uk-slider-items .uk-card {
    background-color: var(--background-surface);
    border: 1px solid var(--border-color);
}
.testimonial-slider .stars-wrapper {
    color: var(--accent-gold);
    margin-bottom: 15px;
}
.testimonial-slider .uk-slidenav {
    color: var(--accent-gold);
    opacity: 0.6;
}
.testimonial-slider .uk-slidenav:hover {
    opacity: 1;
}

/* === STILOVI ZA NOVE SEKCIJE NA NASLOVNICI === */

/* Traka sa statistikom (brojačima) */
.stats-bar {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: -80px; /* Ključno za povlačenje preko hero sekcije */
    position: relative;
    z-index: 10;
    padding: 30px 15px;
}

.stat-item {
    text-align: center;
    border-right: 1px solid #e5e5e5;
}
.stat-item:last-child {
    border-right: none;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stil za "O nama" sekciju (po uzoru na sliku) */
.about-section-premium {
    background-color: var(--bg-light); /* Svijetla pozadina za ovu sekciju */
    padding: 120px 0;
}

.about-section-premium h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--accent-gold);
}

.about-section-premium .uk-text-lead {
    font-size: 1.3rem;
    color: #333; /* Tamniji tekst za bolji kontrast na bijeloj */
    font-weight: 500;
}

.about-section-premium .prose-style {
    font-size: 1.1rem;
    color: #555;
}

.about-section-premium .doctor-signature {
    margin-top: 25px;
}
.about-section-premium .doctor-signature p {
    margin: 0;
    line-height: 1.5;
}
.about-section-premium .doctor-signature .doctor-name {
    font-weight: 600;
    color: #111;
}
.about-section-premium .doctor-signature .doctor-title {
    font-size: 0.9rem;
    color: #666;
}

/* Stil za "callout" oblačić na slici */
.image-callout {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 6px;
    padding: 15px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-callout:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.image-callout p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}
.image-callout .uk-icon {
    color: var(--accent-gold);
    margin-right: 8px;
}

/* Malo drugačiji stil za tijelo stranice kada je tu ova sekcija */
body.has-light-section {
    background: var(--bg-light); /* Postavljamo svijetlu pozadinu za cijelu stranicu */
}
body.has-light-section .dark-section {
    background: linear-gradient(135deg, #004d40 0%, #00796b 100%);
}
body.has-light-section .dark-surface-section {
     background-color: var(--background-surface);
}

/* === STILOVI ZA NASLOVNICU - KONAČNA, RESPONZIVNA VERZIJA === */

/* Novi Hero (Split Layout) prilagođen tamnoj temi */
.hero-split-section {
    background: linear-gradient(135deg, #004d40 0%, #00796b 100%);
    padding: 80px 0;
    overflow: hidden;
}

.hero-split-section .uk-heading-hero {
    font-family: var(--font-heading); /* ISPRAVLJENO! */
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}
.hero-split-section .highlight-gold {
    color: var(--accent-gold);
}

.hero-split-section .hero-subtext {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-top: 25px;
}

/* Gumbi u Hero sekciji */
.hero-buttons .uk-button {
    margin-top: 15px;
}
.uk-button-primary-solid,
.uk-button-gold {
    background-color: var(--accent-gold);
    color: #000;
    border: 2px solid var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.uk-button-primary-solid::before,
.uk-button-gold::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.uk-button-primary-solid:hover::before,
.uk-button-gold:hover::before {
    width: 300px;
    height: 300px;
}
.uk-button-primary-solid:hover,
.uk-button-gold:hover {
    background-color: #cea33e;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(183, 139, 40, 0.4);
}
.uk-button-primary-solid:active,
.uk-button-gold:active {
    transform: translateY(0);
}
.uk-button-secondary-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}
.uk-button-secondary-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: rgba(183, 139, 40, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 139, 40, 0.2);
}

/* Kontejner za sliku i dekoracije */
.hero-image-wrapper {
    position: relative;
}
.hero-image-wrapper img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.hero-image-wrapper:hover img {
    transform: scale(1.02);
}

.hero-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px; height: 60px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--background-dark);
    box-shadow: 0 4px 15px rgba(183, 139, 40, 0.4);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Stats Bar (Responzivni) */
.stats-bar-premium {
    padding: 80px 0;
    background-color: var(--background-surface);
}

.stat-item-premium {
    text-align: center;
}

.stat-item-premium .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    display: inline-block;
}
.stat-item-premium:hover .stat-number {
    transform: scale(1.1);
}

.stat-item-premium .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responzivnost za Stats Bar */
@media (max-width: 959px) { /* Tableti i manji uređaji */
    .stat-item-premium {
        padding: 20px 0;
        border-bottom: 1px solid var(--border-color);
    }
    .stat-item-premium:nth-child(odd) {
        border-right: 1px solid var(--border-color);
    }
    .stat-item-premium:last-child, .stat-item-premium:nth-last-child(2) {
        border-bottom: none;
    }
}
@media (max-width: 639px) { /* Samo mobiteli */
    .hero-split-section { text-align: center; }
    .hero-split-section .hero-subtext { margin-left: auto; margin-right: auto; }
    .stat-item-premium:nth-child(odd) {
        border-right: none;
    }
     .stat-item-premium:last-child {
        border-bottom: none;
    }
}


/* === OPĆI STILOVI KOJE VEĆ IMAMO === */

/* Hero za unutarnje stranice (kao kontakt) */
.hero-contact-premium {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}
.hero-contact-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, #004d40 0%, rgba(0, 77, 64, 0.3) 100%);
}
.hero-contact-premium .uk-container {
    position: relative;
    z-index: 2;
}
.hero-contact-premium h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--text-primary);
}
.hero-contact-premium p.uk-text-lead {
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin-top: 15px;
}

/* Privacy Policy Page Styles */
.privacy-policy-page {
    max-width: 100%;
}

.privacy-policy-page h2 {
    scroll-margin-top: 100px;
}

.privacy-policy-page section {
    scroll-margin-top: 80px;
}

.privacy-policy-page ul {
    margin-left: 1.5rem;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.privacy-policy-page ul li {
    margin-bottom: 0.5rem;
}

.privacy-policy-page a {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.privacy-policy-page a:hover {
    color: #cea33e;
}

/* Form validation improvements */
.uk-input:invalid:not(:placeholder-shown),
.uk-textarea:invalid:not(:placeholder-shown) {
    border-color: #f0506e;
}

.uk-input:valid:not(:placeholder-shown),
.uk-textarea:valid:not(:placeholder-shown) {
    border-color: #32d296;
}

/* Stil za tekstualni sadržaj */
.prose-style {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.prose-style p { margin-bottom: 1.5em; }

/* Kartice za usluge (bez ikone će i dalje raditi) */
.service-card-premium {
    background-color: var(--background-dark);
    padding: 35px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
}
.service-card-premium:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
}
.service-card-premium h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}
.service-card-premium .card-link {
    margin-top: 20px;
    color: var(--accent-gold);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.service-card-premium .card-link span {
    transition: transform 0.2s ease;
    display: inline-block;
}
.service-card-premium:hover .card-link span {
    transform: translateX(5px);
}

/* === STILOVI ZA BLOG STRANICE === */

/* Istaknuti (featured) članak */
.featured-post-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.featured-post-section .post-image img {
    border-radius: 6px;
    height: 450px;
    width: 100%;
    object-fit: cover;
}
.featured-post-section .post-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--accent-gold);
    line-height: 1.3;
}
.featured-post-section .post-content .post-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -15px;
    margin-bottom: 20px;
}
.featured-post-section .post-content .post-excerpt {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Kartica za pojedinačni članak u gridu */
.blog-card-premium {
    background-color: var(--background-surface);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.3s ease;
    overflow: hidden; /* Osigurava da slika ostane unutar zaobljenih rubova */
}
.blog-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: var(--accent-gold);
}
.blog-card-premium .card-media img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card-premium:hover .card-media img {
    transform: scale(1.05);
}
.blog-card-premium .uk-card-body {
    padding: 25px;
}
.blog-card-premium .uk-card-title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}
.blog-card-premium .blog-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 5px;
}
.blog-card-premium .blog-excerpt {
    color: var(--text-secondary);
    margin-top: 15px;
    font-size: 1rem;
}

/* === STILOVI ZA BLOG (ČLANAK I POPIS) - KONAČNA VERZIJA === */

/* --- Stranica pojedinačnog članka (blog-post.php) --- */
.article-content-section {
    padding: 80px 0;
}
.article-meta-box {
    background-color: var(--background-surface);
    padding: 25px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}
.article-meta-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.article-meta-box .meta-item {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}
.article-meta-box .meta-item .meta-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0.7;
}
.article-meta-box .meta-item a {
    color: var(--accent-gold);
    font-weight: 500;
}
.article-meta-box .meta-item a:hover {
    text-decoration: underline;
}

/* --- Finalni CTA na dnu stranice usluge --- */
.final-article-cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--background-surface);
}
.final-article-cta h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-gold);
    line-height: 1.3;
}
.final-article-cta p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 15px auto 30px auto;
}

.hero-contact-premium h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--text-primary);
}

/* DODAJTE OVAJ DIO ZA RESPONZIVNOST */
@media (max-width: 639px) { /* Ovo se primjenjuje na ekranima užim od 640px (mobiteli) */
    .hero-contact-premium h1 {
        font-size: 3rem !important; /* Smanjujemo veličinu fonta da stane na ekran */
        line-height: 1.2; /* Malo zbijamo redove radi estetike */
    }
}

/* Custom Cookie Consent Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #00796b;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cc-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cc-btn-primary {
    background: #ffffff;
    color: #004d40;
}

.cc-btn-primary:hover {
    background: #f0f0f0;
}

.cc-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cc-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Settings Modal */
.cookie-consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-consent-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-consent-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

.cookie-consent-modal-content {
    position: relative;
    background: var(--background-surface);
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-consent-modal.show .cookie-consent-modal-content {
    transform: scale(1);
}

.cookie-consent-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-consent-modal-header h2 {
    margin: 0;
    color: var(--accent-gold);
    font-family: var(--font-heading);
}

.cc-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.cc-modal-close:hover {
    color: var(--text-primary);
}

.cookie-consent-modal-body {
    padding: 20px;
}

.cc-category {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.cc-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cc-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.cc-category-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    flex: 1;
}

.cc-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--background-dark);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 10px;
}

.cc-category p {
    color: var(--text-secondary);
    margin: 10px 0;
    line-height: 1.6;
}

.cc-cookie-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Toggle Switch */
.cc-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cc-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cc-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    transition: 0.3s;
    border-radius: 26px;
}

.cc-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cc-toggle input:checked + .cc-toggle-slider {
    background-color: var(--accent-gold);
}

.cc-toggle input:checked + .cc-toggle-slider:before {
    transform: translateX(24px);
}

.cc-toggle input:disabled + .cc-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-consent-modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

@media (max-width: 640px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cc-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-consent-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .cookie-consent-modal-footer {
        flex-direction: column;
    }
    
    .cookie-consent-modal-footer .cc-btn {
        width: 100%;
    }
}