p {
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* ============ HEADER (full width, sadržaj 100%, iznutra 60px) ============ */
.site-header {
    height: 100px;
    background: #fff;
}
.header-inner {
    height: 100px;
    padding: 0 40px;
} /* 100% širine, bez max */

.site-logo {
    height: 32px;
}

/* Desktop meni */
.main-nav .nav-link-custom {
    margin-left: 32px;
    text-decoration: none;
    color: #000;
    font-weight: 400;
    position: relative;
}

@media (max-width: 1038px) {
    .main-nav .nav-link-custom {
        margin-left: 22px;
    }
}

.main-nav .nav-link-custom:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #000;
}

.main-nav .btn-dark-custom {
    margin-left: 42px; /* razmak od poslednjeg linka do dugmeta */
}

/* Dugme */
.btn-k {
    background: #000;
    border-color: #000;
}

/* Burger */
.navbar-toggler {
    border: 0;
    padding: 0.25rem;
}
.burger-lines {
    display: inline-block;
    width: 26px;
    height: 2px;
    background: #000;
    position: relative;
}
.burger-lines::before,
.burger-lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: #000;
}
.burger-lines::before {
    top: -7px;
}
.burger-lines::after {
    top: 7px;
}

/* Offcanvas mobilni meni */
.mobile-menu {
    background: #fff;
    width: 100%;
    max-width: 360px;
}
.mobile-menu .offcanvas-header {
    border-bottom: 1px solid #eee;
}
.mobile-menu .offcanvas-title {
    font-weight: 700;
}

.nav-link-mobile {
    display: block;
    padding: 14px 4px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}
.nav-link-mobile:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #000;
}

.nav-link-custom.active,
.nav-link-mobile.active,
.btn-dark-custom.active {
    position: relative;
}

.nav-link-custom.active::after,
.nav-link-mobile.active::after,
.btn-dark-custom.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 3px;
    background: #2f6bff;
}

/* sigurnosno */
@media (max-width: 991.98px) {
    .main-nav {
        display: none !important;
    }
}

.container-xxl {
    max-width: 1600px !important;
}

/* RESPONSIVE: na < LG sve ide u normalan tok */
@media (max-width: 1800px) {
    .container-xxl {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

/* === HERO (Bootstrap repackage) === */
.hero {
    position: relative;
    overflow: hidden; /* sakriva višak slike van 1400px */
}

.hero .container-xxl {
    margin: 0 auto;
    position: relative;
    height: 630px;
}

/* Tekstualni blok */
.hero .hero-content {
    position: absolute;
    top: 150px; /* 60px ispod hedera */
    left: 0;
    z-index: 2;
    background: transparent;
}

.hero .hero-title {
    font-size: 86px;
    line-height: 1.1;
    margin-bottom: 10px;
    position: relative;
    z-index: 3; /* iznad slike */
}
.hero .hero-title .blue {
    color: #3b5bff;
}

.hero .hero-lead {
    font-size: 18px;
    max-width: 720px;
    margin-top: 10px;
    position: relative;
    z-index: 3;
}

/* Slika desno */
.hero .hero-image {
    position: absolute;
    right: -108px; /* 55% od 1400px */
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 1;
    pointer-events: none;
}
.hero .hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* RESPONSIVE: na < LG sve ide u normalan tok */
@media (max-width: 1600px) {
    .hero .container-xxl {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1399px) {
    .hero .container-xxl {
        height: auto;
    }

    .hero .hero-content {
        position: static;
        margin-top: 24px;
    }

    .hero .hero-title {
        font-size: 48px;
    }
    .hero .hero-lead {
        max-width: none;
    }

    .hero .hero-image {
        position: static;
        width: 100%;
        max-width: none;
        justify-content: center;
        margin-top: 24px;
        pointer-events: auto;
    }
}

@media (max-width: 575.98px) {
    .hero .hero-title {
        font-size: 40px;
    }
}

/* Default: slika se prikazuje */
.hero .hero-image {
    display: flex;
}

/* Sakrij kad širina padne ispod 1400px */
@media (max-width: 1399px) {
    .hero .hero-image {
        display: none !important;
    }
}

/* ===== CTO1 ===== */
.section-cto {
    position: relative;
    background: #fff;
    padding: 120px 0 340px; /* kao u originalu */
    overflow: hidden;
}

/* kontejner je referenca za apsolutnu ilustraciju */
.section-cto .container-xxl {
    position: relative;
    z-index: 1;
}

/* ilustracija je unutra i apsolutna u odnosu na .container-xxl */
.section-cto .cto-illustration {
    position: absolute;
    top: -120px;
    left: -300px;
    width: 1087px;
    height: 827px; /* samo za referencu; realnu visinu diktira img */
    z-index: 0;
    pointer-events: none;
}
.section-cto .cto-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

/* sadržaj ide iznad ilustracije */
.section-cto .cto-content {
    position: relative;
    z-index: 2;
    max-width: 860px; /* ili ukloni ako hoćeš da se širi do kraja */
    margin-left: auto; /* gura ga udesno */
    margin-right: 0; /* osigurava da je desni rub na rubu containera */
}

/* stats */
.cto-stats {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.cto-stats div {
    min-width: 120px;
    text-align: left;
}
.cto-stats strong {
    font-size: 38px;
    font-weight: 700;
}
.cto-stats span {
    font-size: 14px;
    color: #333;
}
.blue {
    color: #3a49f9;
}

/* tekst */
.section-cto .intro {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.section-cto .note {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
}

/* RESPONSIVE */
@media (max-width: 1399px) {
    .section-cto {
        padding: 100px 0 120px;
    }
    .section-cto .cto-illustration {
        display: none;
    } /* sakrij na manjim */
    .section-cto .cto-content {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 500px) {
    .section-cto {
        padding: 40px 0 60px;
    }
    .section-cto .cto-illustration {
        display: none;
    } /* sakrij na manjim */
    .section-cto .cto-content {
        max-width: 100%;
        margin-left: 0;
    }

    .cto-stats {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
        margin-right: 60px;
        margin-bottom: 32px;
    }
}

/* === SECTION CTO2 === */
.section-cto2 {
    position: relative;
}

/* Makaze */
.section-cto2 .scissors {
    position: absolute;
    left: 40px;
    top: var(--cutline-y, 50%);
    transform: translateY(-50%);
    width: 340px;
    height: 300px;
    background: url("/krojac-assets/images/makaze.png") no-repeat center /
        contain;
    z-index: 10;
    pointer-events: none;
}

/* Ispod 1400px: sakrij dekoracije i raširi tekst na 100% */
@media (max-width: 1399.98px) {
    .section-cto2 .scissors,
    .section-cto2 .cut-line {
        display: none !important;
    }

    .section-cto2 .cto2-inner {
        max-width: 100% !important;
        margin-left: 0 !important;
    }
}

/* Isprekidana narandžasta linija */
.section-cto2 .cut-line {
    position: absolute;
    left: 500px;
    right: 0;
    top: calc(var(--cutline-y, 50%) - 20px);
    height: 20px;
    background-image: repeating-linear-gradient(
        to right,
        #ff8000 0 250px,
        transparent 250px 390px
    );
    z-index: 1; /* sada ispod teksta */
}

/* Kontejner */
.section-cto2 .container-xxl {
    margin: 0 auto;
    position: relative;
    z-index: 2; /* iznad linije */
}

/* Tekstualni blok */
.section-cto2 .cto2-inner {
    max-width: 800px;
    margin-left: auto; /* desno poravnanje */
}

.section-cto2 .cto2-top {
    font-size: 54px;
    font-weight: 400;
    margin: 0 0 8px;
}
.section-cto2 .cto2-main {
    font-size: 76px;
    font-weight: 900;
    line-height: 1.08;
    margin: 0 0 16px;
}
.section-cto2 .cto2-desc {
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
}

/* Responsive prilagođavanje */
@media (max-width: 1024px) {
    .section-cto2 {
        --cutline-y: 220px;
        padding: 120px 0 60px;
    }
    .section-cto2 .cto2-top {
        font-size: 40px;
    }
    .section-cto2 .cto2-main {
        font-size: 56px;
    }
}
@media (max-width: 575.98px) {
    .section-cto2 .cto2-top {
        font-size: 32px;
    }
    .section-cto2 .cto2-main {
        font-size: 44px;
    }
}

/* === CTO3 (final) === */
.section-cto3 {
    position: relative;
    height: 750px;
    overflow: hidden;
    background: #fff;
}

/* 1400px “platno” + ilustracija desno u pozadini */
.section-cto3 .container,
.section-cto3 .container-xxl {
    margin: 0 auto;
    height: 100%;
    position: relative;
    background: url("/krojac-assets/images/cto3-linija.png") no-repeat;
    background-size: 787px 725px;
    background-position: calc(100% - 320px) center;
}

/* Levi stub sa tekstom */
.cto3-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    padding-top: 150px;
}

.cto3-content {
    max-width: 630px;
    z-index: 1; /* iznad pozadine */
}

/* Tipografija/blokovi */
.cto3-number {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.cto3-number .big {
    font-size: 126px;
    line-height: 1;
    font-weight: 900;
    color: #3a49f9;
    letter-spacing: -1px;
}
.cto3-number .label {
    font-size: 16px;
    font-weight: 600;
}
.cto3-content .kicker {
    font-weight: 800;
    margin: 12px 0 8px;
}
.cto3-content .copy {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px;
}

/* CTO3: plavo dugme sa donjom crtom koja pocrni na hover */
.section-cto3 .btn-blue {
    display: inline-block;
    position: relative;
    background: #2a4fff !important;
    border: 1px solid #2a4fff !important;
    color: #fff !important;
    padding: 12px 24px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0; /* kockasto */
}
.section-cto3 .btn-blue.underline-bar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    background: #2a4fff;
    transition: background-color 0.25s ease;
}
.section-cto3 .btn-blue:hover {
    color: #fff !important;
}
.section-cto3 .btn-blue.underline-bar:hover::after {
    background: #000;
}

/* ===== Responsive ===== */
@media (max-width: 1399.98px) {
    .section-cto3 {
        height: auto;
        padding: 100px 0 120px;
    }
    .section-cto3 .container,
    .section-cto3 .container-xxl {
        padding-left: 40px;
        padding-right: 40px;
        background-position: right bottom;
        background-size: 560px auto;
    }
}

@media (max-width: 991.98px) {
    .section-cto3 .container,
    .section-cto3 .container-xxl {
        background-size: 420px auto;
        opacity: 0.95; /* po želji */
    }
}

@media (max-width: 575.98px) {
    .section-cto3 .container,
    .section-cto3 .container-xxl {
        background: none; /* sakrij ilustraciju na XS */
    }

    .section-cto2 {
        padding: 0px;
    }

    .cto3-content {
        max-width: none;
    }

    .cto3-wrap {
        padding-top: 20px;
    }
    .section-cto3 {
        padding: 0px;
    }
    .section-cto4 .cto4-subtitle {
        margin: 4px 0 0 4px !important;
        font-size: 16px !important;
    }
    .section-cto4 .cto4-services {
        margin-top: 60px !important;
    }
}

/* Sakrij ilustraciju pozadine ispod 1400px */
@media (max-width: 1399.98px) {
    .section-cto3 .container,
    .section-cto3 .container-xxl {
        background: none !important;
    }
}

/* ==== CTO4 ==== */
.section-cto4 {
    position: relative;
    padding: 60px 0 40px;
    background: #fff;
}

.section-cto4 .container-xxl {
    position: relative;
    height: 950px;
    padding: 0px;
    background: url("/krojac-assets/images/cto4-linija.png") no-repeat;
    background-position: 60px 220px;
    background-size: 787px 725px;
}

/* Naslov */
.section-cto4 .cto4-title {
    font-family: "Montserrat Alt1 SemiBold", sans-serif;
    font-size: 96px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}
.section-cto4 .cto4-title .black {
    color: #000;
}
.section-cto4 .cto4-title .blue {
    color: #2a4fff;
}

/* Podnaslov */
.section-cto4 .cto4-subtitle {
    margin: 6px 0 0 9px;
    font-size: 18px;
}

/* Blok USLUGE */
.section-cto4 .cto4-services {
    max-width: 920px;
    margin-left: calc(320px + 120px);
    margin-top: 240px;
}
.section-cto4 .cto4-services h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
}
.section-cto4 .cto4-services p {
    font-size: 18px;
    line-height: 1.55;
    margin: 0;
}

/* Responsivno */
@media (max-width: 1200px) {
    .section-cto4 .container-xxl {
        background-position: left 60px;
        background-size: 600px 553px;
    }
    .section-cto4 .cto4-services {
        margin-left: calc(600px + 80px);
    }
}

@media (max-width: 992px) {
    .section-cto4 .container-xxl {
        background-position: center 360px;
        background-size: 520px auto;
        min-height: auto;
        padding-bottom: 20px;
    }
    .section-cto4 .cto4-services {
        margin-left: 0;
        margin-top: 60px;
        max-width: 100%;
    }
    .section-cto4 .cto4-title {
        font-size: 64px;
    }
}

@media (max-width: 500px) {
    .section-cto4 .container-xxl {
        background-position: center 360px;
        background-size: 520px auto;
        min-height: auto;
        padding-bottom: 20px;
    }
    .section-cto4 .cto4-services {
        margin-left: 0;
        margin-top: 60px;
        max-width: 100%;
    }
    .section-cto4 .cto4-title {
        font-size: 34px;
    }
    .cto3-number .big {
        font-size: 66px;
    }
}

/* < 1400px: sakrij pozadinsku liniju i ukini fiksnu visinu */
@media (max-width: 1399.98px) {
    .section-cto4 .container-xxl {
        background: none !important;
        height: auto !important;
    }
    .section-cto4 .cto4-services {
        max-width: 100%;
        margin-left: 0;
    }
}

/* ===== CTO5 (MI IMAMO REŠENJE) ===== */
.section-cto5 {
    background: #fff;
    padding: 0 0 160px;
}

/* grid: leva kolona foto (min 420 / max 620), desno tekst */
.section-cto5 .cto5-wrap {
    display: grid;
    grid-template-columns: minmax(420px, 620px) 1fr;
    gap: 60px;
    align-items: center;
    justify-items: start;
}

/* FOTO levo – krug */
.section-cto5 .cto5-photo {
    justify-self: start;
    align-self: start;
    margin: 0;
}
.section-cto5 .cto5-photo img {
    display: block;
    width: 100%;
    max-width: 620px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

/* Kicker (ako ga nema drugde) */
.kicker {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #000;
}

/* ===== CTO5 (MI IMAMO REŠENJE) ===== */
.section-cto5 {
    background: #fff;
    padding: 0 0 160px;
}

/* grid: leva kolona foto (min 420 / max 620), desno tekst */
.section-cto5 .cto5-wrap {
    display: grid;
    grid-template-columns: minmax(420px, 620px) 1fr;
    gap: 60px;
    align-items: center;
    justify-items: start;
}

/* FOTO levo – krug */
.section-cto5 .cto5-photo {
    justify-self: start;
    align-self: start;
    margin: 0;
}
.section-cto5 .cto5-photo img {
    display: block;
    width: 100%;
    max-width: 620px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

/* Kicker (ako ga nema drugde) */
.kicker {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #000;
}
/* responsivno smanji na manjim širinama */
@media (max-width: 992px) {
    .section-cto5 .cto5-content .cto5-kicker {
        font-size: 24px;
    }
}
@media (max-width: 576px) {
    .section-cto5 .cto5-content .cto5-kicker {
        font-size: 20px;
    }
}
.section-cto5 .cto5-title {
    font-size: 86px;
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 18px;
}
.section-cto5 .cto5-text {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 100%;
}

/* LOGOTIPI */
.section-cto5 .cto5-logos {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}
.section-cto5 .cto5-logos img {
    width: auto;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.section-cto5 .cto5-logos img:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-1px);
}

/* TRI tačke (class="dots") */
.section-cto5 .dots a {
    display: inline-block;
    width: 30px;
    height: 8px;
    position: relative;
    background: none;
}
.section-cto5 .dots a::before,
.section-cto5 .dots a::after,
.section-cto5 .dots a span {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}
.section-cto5 .dots a::before {
    left: 0;
}
.section-cto5 .dots a span {
    left: 11px;
}
.section-cto5 .dots a::after {
    right: 0;
}

/* ========== BLOG (Krojač) ========== */

/* =========================
   Blog: lista kategorija
   ========================= */
.k-blog-page .k-categories-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px; /* razmak između elemenata */
    margin: 10px 0 80px; /* ispod "SVEŽI INFO" */
}

.k-blog-page .k-cat {
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #111;
    line-height: 1.2;
    text-decoration: none;
}

/* underline only the active category link */
.k-blog-page .k-categories-list .k-cat.is-active {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

.k-blog-page .k-sep {
    color: #999;
    margin: 0 4px;
}

/* Hover stil ako kategorije budu linkovi (safe i za <span>) */
.k-blog-page .k-cat:hover {
    color: #2d40ff;
}

/* Responsive – malo zbijenije na malim ekranima */
@media (max-width: 576px) {
    .k-blog-page .k-categories-list {
        gap: 4px 8px;
        margin-bottom: 24px;
    }
    .k-blog-page .k-cat {
        font-size: 12px;
    }
}

/* ===== Author row ===== */
.k-author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: -10px 0 50px;
}

.k-author-detailed {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: -10px 0 0px;
}

.k-author-label {
    font-size: 12px;
    color: #6b7280;
    letter-spacing: 0.02em;
}
.k-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: #111; /* fallback kad nema slike */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}
.k-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.k-author-initials {
    font-size: 14px;
    line-height: 1;
}
.k-author-name {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

/* varijante veličine */
.k-author--lg .k-author-avatar {
    width: 36px;
    height: 36px;
}
.k-author--lg .k-author-name {
    font-size: 14px;
}

.k-author--sm {
    gap: 10px;
    margin: 6px 0 16px;
}
.k-author--sm .k-author-avatar {
    width: 36px;
    height: 36px;
}
.k-author--sm .k-author-name {
    font-size: 14px;
}

/* =========================
.k-blog-page { 
  padding-top: 48px; padding-bottom: 80px; }

  /* Samo blog stranice – 60% širine ekrana */
.k-blog-page.container {
    max-width: 1600px; /* širina kontejnera */
    width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

/* HERO naslov – 220px, bez bordera/zaobljenja */
.k-hero-title {
    font-size: 220px;
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 100px 0 0 -15px;
    text-transform: uppercase;
}

.k-feature-post {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, min(800px, 50%)); /* image column shrinks after 50%, capped at 800px */
    gap: 48px;
    padding: 90px;
    background: #f4f4f4;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
    container-type: inline-size;
}
.k-feature-text {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.k-post-date {
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #777;
    margin: 0 0 5px;
    text-transform: none;
}

.k-post-title {
    margin: 0 0 20px; /* 20px između naslova i teksta */
}

.k-post-title a {
    font-size: clamp(28px, 4.5vw, 64px);
    font-weight: 700;
    line-height: 1;
    color: #000;
    margin: 0 0 50px; /* 50px između naslova i teksta */
    border: none;
    text-decoration: none;
}

/* Feature post title */
.k-feature-post .k-post-title a {
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.1;
}

@container (max-width: 500px) {
    .k-feature-post .k-post-title a {
        font-size: clamp(22px, 4.5cqw, 48px);
        line-height: 1.1;
    }
    .k-post-date {
        margin: 0px !important;
    }
    .k-author {
        gap: 14px;
        margin: -10px 0 10px;
    }
    .k-feature-post {
        padding-bottom: 40px !important;
    }
}

.k-post-excerpt {
    margin: 0 0 24px;
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}

.k-feature-media {
    display: block;
    width: 100%; /* fill its grid column */
    max-width: 100%; /* never exceed the column */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    justify-self: end; /* align right within column */
}
.k-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--svc-radius);
    box-shadow: var(--svc-shadow);
    transform: translateZ(0);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.3s ease;
}

@media (max-width: 1399.98px) {
    .k-feature-post {
        grid-template-columns: 1fr;
        padding: 40px 40px;
    }
    .k-feature-text { order: 2; }
    .k-feature-media {
        order: 1;
        width: 100%;
        max-width: none;
        margin-top: 24px;
    }
}

@media (max-width: 500px) {
    .k-feature-post {
        grid-template-columns: 1fr;
        padding: 0px 20px;
    }
}

/* Grid kartice */
.k-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 40px;
    margin: 90px 0;
    grid-auto-rows: 1fr; /* najvažnije */
}

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

.k-btn--sm {
    margin-top: auto;
}
.k-feature-text .k-btn--sm {
    margin-top: 0;
    display: inline-block;
    width: fit-content;
}
.k-card .k-thumb {
    display: block;
    max-width: 100%;
    overflow: hidden;
}
.k-thumb img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: var(--svc-radius);
    box-shadow: var(--svc-shadow);
    transform: translateZ(0);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .k-grid {
        grid-auto-rows: auto !important;
    } /* spreči prisilno istezanje */
    .k-thumb {
        aspect-ratio: auto !important;
    }
    .k-thumb,
    .k-thumb img {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important; /* bez calc(100% + padding) i 100vw */
    }
    .k-card {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 20px;
    } /* ako kartica ima interni padding */
    .k-blog-page {
        overflow: hidden;
    } /* poslednja zaštita od curenja */
}

.k-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 16px 0 12px;
}
.k-card-excerpt {
    margin: 0 0 40px;
    color: #222;
}

/* Dugme: crno, belo slovo */
.k-btn {
    position: relative; /* referenca za liniju */
    display: inline-block;
    padding: 14px 26px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #fff;
    background: #000;
    border: 0;
    border-radius: 0;
    text-decoration: none; /* bez underline-a */
    cursor: pointer;
}

/* Plava linija ispod (van box-a dugmeta) */
.k-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px; /* pomeri ispod dugmeta */
    width: 120px; /* dužina linije */
    height: 3px;
    background: #2d40ff;
}

/* (opciono) lagani hover – linija malo poraste */
.k-btn:hover::after {
    width: 140px;
}

/* Kartica: datum + naslov iznad slike */
.k-card {
    display: block;
}

.k-card-title {
    margin: 6px 0 12px;
}
.k-card .k-card-title a {
    font-size: clamp(18px, 6cqw, 22px);
    font-weight: 700;
    line-height: 1.15;
    color: #000;
    text-decoration: none;
}

/* Thumb: zadržavamo crop 680x450 */
.k-thumb {
    display: block;
    aspect-ratio: 680 / 450;
    overflow: hidden;
    margin: 0 0 30px; /* razmak ispod slike */
}
.k-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@container (max-width: 500px) {
    .k-card-title a {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.15;
        color: #000;
        text-decoration: none;
    }
}

/* sakrij neaktivne grupe */
.k-group.is-hidden {
    display: none;
}

.k-loadmore-wrap {
    display: flex;
    justify-content: center;
    margin: 40px 0 10px;
}

.k-sentinel {
    height: 1px;
}

/* Dugme */
.k-btn-load {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* razmak tekst–spinner */
    background: #000;
    color: #fff;
    font-size: 13px;
    padding: 10px 18px; /* manja visina */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    min-width: 140px;
    transition: background 0.25s ease;
}

.k-btn-load:hover {
    background: #111;
}

/* Spinner (uvek tu, samo se vrti kada je .loading) */
.k-spinner {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    animation: kspin 0.8s linear infinite;
    display: inline-block;
}

@keyframes kspin {
    to {
        transform: rotate(360deg);
    }
}

/* Kad nije loading — spinner se samo sakrije */
.k-btn-load:not(.loading) .k-spinner {
    display: none;
}

/* =========================
   Page – scoped styles
   ========================= */

.prose {
    margin-top: 3rem;
}

.prose h2 strong {
    font-size: 1.715rem;
    font-weight: 600;
}

.text-muted {
    font-size: 1rem !important;
}

/* =========================
   Kontakt page – scoped styles
   ========================= */
.k-contact-page {
    padding: 80px 0 120px;
    margin-bottom: 100px;
}
.k-contact-page .container {
    max-width: 1600px;
}

/* Ogroman naslov + plavi akcenat */
.k-contact-page .k-title {
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    /* fluidna veličina */
    font-size: clamp(44px, 7vw, 140px);
}
.k-contact-page .k-title .text-primary {
    color: #2d40ff;
}

.k-contact-page .text-start {
    text-align: left !important; /* ili center ako hoćeš centrirano */
}

.k-contact-page .mb-5 {
    margin-bottom: 7rem !important; /* ili koliko već */
}

/* Leva kolona – tekst */
.k-contact-page .k-contact-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.k-company {
    margin-bottom: 20px;
}

.k-company-name {
    font-size: 18px !important;
    font-weight: 500;
    margin-bottom: 30px !important;
    display: block;
}

.k-company-email a {
    color: #2563eb; /* plava */
    text-decoration: none;
}

.k-company-email a:hover {
    text-decoration: underline;
}

.k-company-address,
.k-company-hours {
    color: #333;
    font-size: 15px;
    margin-bottom: 4px;
}

.k-note {
    font-size: 14px;
    color: #666;
    max-width: 500px;
}

.k-contact-page .k-contact-info a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #2d40ff;
}
.k-contact-page .k-contact-info a:hover {
    color: #2d40ff;
}

.k-subtext {
    max-width: 700px;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.k-contact-page .form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: #9e9b9b;
    font-size: 14px;
}

/* Forma */
.k-contact-page .k-form .form-control {
    height: 56px;
    padding: 14px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    margin-bottom: 30px;
}
.k-contact-page .k-form textarea.form-control {
    height: auto;
    min-height: 220px;
    resize: vertical;
}
.k-contact-page .k-form .form-control:focus {
    border-color: #2d40ff;
    outline: none;
    box-shadow: none;
}

/* Checkbox */
.k-contact-page .form-check-input {
    width: 18px;
    height: 18px;
    border-radius: 2px;
    margin-top: 2px;
    border: 1.5px solid #1a1a1a;
    box-shadow: none;
    accent-color: #2d40ff; /* modern browsers */
}
.k-contact-page .form-check-label {
    font-size: 14px;
    color: #111;
}

/* Dugme sa plavom linijom ispod */
.k-contact-page .k-btn {
    position: relative;
    display: inline-block;
    padding: 14px 26px;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    border: 0;
    border-radius: 0;
    text-decoration: none;
}
.k-contact-page .k-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 140px;
    height: 3px;
    background: #2d40ff;
    transition: width 0.2s ease;
}
.k-contact-page .k-btn:hover::after {
    width: 170px;
}

/* Honeypot anti-bot field */
.k-contact-page .hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Sitne korekcije bootstrap spacing-a desne kolone */
@media (min-width: 992px) {
    .k-contact-page .col-lg-6:nth-child(2) {
        padding-left: 56px;
    }
}

/* Label stil */
.k-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #767676;
    margin-bottom: 10px;
}

/* Input polja */
.k-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

/* Hover + fokus efekat */
.k-input:focus {
    border-color: #2563eb; /* plava kao na naslovu */
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 500px) {
    .k-contact-page {
        padding: 30px 0 120px;
        margin-bottom: 30px;
    }

    .k-company-name {
        margin-bottom: 10px !important;
    }

    .k-contact-page .mb-5 {
        margin-bottom: 3rem !important;
    }
}

@media (max-width: 1399.98px) {
    .section-cto5 .cto5-photo-img {
        display: none !important;
    }
    .section-cto5 .cto5-content {
        max-width: 100% !important;
        flex: 0 0 100%;
    }
}

/* Responsive – smanji naslov i kolone */
@media (max-width: 1600px) {
    .k-hero-title {
        font-size: 156px;
    }
}
@media (max-width: 991px) {
    .k-hero-title {
        font-size: 42px;
        margin: 40px 0 0 -4px;
    }
    .k-grid {
        grid-template-columns: 1fr;
        margin: 50px 0;
    }
    .k-thumb {
        width: 100%;
        height: 360px;
    }
}

/* tipografija i veličine kruga za manje širine (ako fotku zadržiš iznad 1400) */
@media (max-width: 1200px) {
    .section-cto5 .cto5-title {
        font-size: 72px;
    }
    .section-cto5 .cto5-photo img {
        max-width: 520px;
    }
}
@media (max-width: 992px) {
    .section-cto5 .cto5-wrap {
        gap: 40px;
    }
    .section-cto5 .cto5-title {
        font-size: 56px;
    }
}
@media (max-width: 640px) {
    .section-cto5 .cto5-title {
        font-size: 52px;
    }
}

/* ===== Footer ===== */
.footer {
    background: #000;
    color: #fff;
    font-family: "Montserrat", sans-serif;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 80px;
    margin-top: 100px;
}

.footer-inner {
    max-width: 1600px; /* naš globalni layout */
    margin: 0 auto;
    min-height: 660px;
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    max-width: 180px;
}

.footer-desc {
    max-width: 600px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    margin-bottom: 30px; /* isto kao mb-4 ali fiksirano za sve */
}

.social-icons.mb-4 {
    margin-bottom: 2.5rem !important;
}

/* Ikonice društvenih mreža (bele) */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
}
.social-icons img {
    width: 30px;
    height: 30px;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}
.social-icons a:hover img {
    filter: brightness(0) invert(0.7);
}

/* Link kolone */
.footer-links {
    flex-wrap: wrap;
}
.footer-links h3 {
    font-size: 30px;
    margin: 40px 0 16px;
    position: relative;
}
.footer-links h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 50px;
    height: 4px;
    background: #0055ff;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}
.footer-links li {
    font-size: 18px;
    margin-bottom: 16px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    font-size: 16px;
}
.footer-links a:hover {
    text-decoration: underline;
}

/* Mačka (Školjkica) */
.footer-cat {
    position: absolute;
    top: 200px; /* zahtev: top 300px */
    right: 0;
    width: 361px;
    height: 430px; /* zahtevane dimenzije */
    display: flex;
    justify-content: flex-end;
}
.footer-cat img {
    width: 361px;
    height: 361px;
    object-fit: contain;
}

/* Donja traka */
.footer-bottom {
    padding: 10px 0 14px;
    border-top: 0;
}
.footer-bottom p {
    margin: 0;
    text-align: right;
    font-size: 14px;
    color: #fff;
    margin-top: 1.5rem;
}

.footer-links.d-flex {
    gap: 15rem !important;
}

/* Responsivno ponašanje */
@media (max-width: 1399.98px) {
    /* ništa specijalno ne krijemo u footeru, samo dozvolimo da raste */

    .footer-links.d-flex {
        gap: 5rem !important;
    }

    .footer-links li {
        margin-bottom: 12px;
    }
}

@media (max-width: 991.98px) {
    .footer-links {
        gap: 60px;
    }

    .footer-cat {
        position: static; /* neka padne ispod na mobilnom */
        width: 100%;
        height: auto;
        margin-top: 40px;
        justify-content: flex-start;
    }
    .footer-cat img {
        width: 240px;
        height: auto;
    }
}

@media (max-width: 575.98px) {
    .footer-links h3 {
        font-size: 24px;
    }
    .footer-links li {
        font-size: 16px;
    }

    .footer {
        margin-top: 20px;
    }
    .footer-bottom p {
        font-size: 12px;
        text-align: left;
    }

    .footer-links.d-flex {
        gap: 2rem !important;
    }
}

@media (max-width: 992px) {
    .footer-cat,
    .footer-cat-container,
    .footer-cat-col {
        display: none !important;
    }
}

/* === Override: Single Post Title size & width === */
.k-post-title {
    font-size: 96px;
    margin: 0 0 30px;
    max-width: 90%;
    line-height: 1rem;
}
/* Ensure link inside uses the same size and resets extra margin */
.k-post-title a {
    font-size: inherit;
    margin: 0;
}

/* ========== SINGLE POST (detaljna strana) ========== */
.k-post-page {
    padding: 48px 0 100px;
}

/* Samo single post stranice – širina kontejnera kao na blogu */
.k-post-page.container {
    max-width: 1600px;
    width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header: datum + H1 + autor */
.k-post-header {
    margin: 20px 0 36px;
}
.k-post-date {
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #777;
    margin: 0 0 10px;
}

.k-post-h1 {
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    font-size: clamp(44px, 7vw, 96px);
    max-width: 100%;
}

@media (max-width: 640px) {
    .k-post-h1 {
        line-height: 1.05;
    }
}

@media (max-width: 992px) {
    .k-post-h1 {
        max-width: 100%;
    }
}

/* Autor (koristi postojeće .k-author util-e, ali malo zategnuto) */
.k-post-author {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.k-post-author .k-author-avatar {
    width: 40px;
    height: 40px;
}
.k-post-author .k-author-name {
    font-size: 16px;
}

/* Hero slika */
.k-post-hero {
    margin: 24px 0 36px;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9; /* čitljiv 16:9 kadar */
    background: #f6f6f6;
}
.k-post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sadržaj članka – tipografija */
.k-post-content {
    font-size: 18px;
    line-height: 1.75;
    color: #111;
    max-width: 100%;
    width: 100%;
}
.k-post-content p {
    margin: 0 0 1.25em;
}
.k-post-content h2 {
    font-size: 40px;
    line-height: 1.15;
    margin: 1.2em 0 0.4em;
    letter-spacing: -0.01em;
}
.k-post-content h3 {
    font-size: 28px;
    line-height: 1.2;
    margin: 1.1em 0 0.4em;
}
.k-post-content ul,
.k-post-content ol {
    padding-left: 1.2em;
    margin: 0 0 1.25em;
}
.k-post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 28px 0;
    border-radius: 4px;
}
.k-post-content blockquote {
    border-left: 4px solid #2d40ff;
    padding: 0.6em 1em;
    margin: 1.2em 0;
    color: #333;
    background: #f7f8ff;
}

/* Kategorije (chip-ovi) */
.k-post-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 36px 0 0;
}
.k-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
}
.k-chip:hover {
    border-color: #2d40ff;
    color: #2d40ff;
}

/* Back link / navigacija ispod teksta */
.k-post-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 36px 0 0;
}
.k-back {
    text-decoration: none;
    color: #000;
    position: relative;
}
.k-back::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: #2d40ff;
    transition: width 0.2s ease;
}
.k-back:hover::after {
    background: #000;
}

/* ===============================
   SERVICES LIST
   =============================== */

/* Paleta i spacing – lako menjaš po želji */
:root {
    --svc-text: #111;
    --svc-muted: #888;
    --svc-link: #000;
    --svc-radius: 8px;
    --svc-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    --svc-gap: 60px;
    --svc-maxw: 780px;
    --svc-imgw: 600px; /* real width slike */
    --svc-imgr: calc(5 / 6); /* 600/720 ~ 0.833, zadržavamo portret */
}

/* Jedan blok (sekcija) usluge */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--svc-gap);
    align-items: center;
    margin: 80px 0;
}

/* Naizmenično – elegantno zameni strane */
.service-block.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}
.service-block.reverse .service-content {
    direction: ltr; /* tekst ostaje normalan */
}

/* Slika */
.service-image {
    display: block;
    max-width: var(--svc-imgw);
    width: 100%;
}
.service-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 6; /* sprečava CLS i čuva odnos 600x720 */
    object-fit: cover;
    border-radius: var(--svc-radius);
    box-shadow: var(--svc-shadow);
    display: block;
    transform: translateZ(0);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.3s ease;
}

/* Blagi hover na slici */
.service-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 14px 60px rgba(0, 0, 0, 0.1);
}

/* Tekstualni deo */
.service-content {
    max-width: var(--svc-maxw);
    color: var(--svc-text);
}

.service-label {
    display: block;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--svc-muted);
    margin-bottom: 12px;
}

.service-title {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px 0;
}
.service-title a {
    color: var(--svc-link);
    text-decoration: none;
}
.service-title a:hover {
    opacity: 0.8;
}

.service-excerpt {
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.6;
    color: #333;
    margin: 0 0 26px 0;
}

.service-more {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--svc-link);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.service-more:hover {
    opacity: 0.65;
    transform: translateY(-1px);
}

/* SCROLL */

.k-infinite-scroll {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.k-scroll-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    width: max-content;

    will-change: transform;
    animation: marqueeInfinite 60s linear infinite;
}

.k-scroll-item {
    flex: 0 0 auto;
}

.k-scroll-item img {
    height: 200px;
    width: 300px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}

/* 8 klonova → širina ogromna → možemo pomerati do -12.5% */
@keyframes marqueeInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-12.5%);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .k-scroll-track {
        gap: 24px;
        animation-duration: 50s;
    }
    .k-scroll-item img {
        height: 100px;
    }
}
@media (max-width: 576px) {
    .k-scroll-track {
        gap: 16px;
        animation-duration: 40s;
    }
    .k-scroll-item img {
        height: 84px;
    }
}

/* Animation */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Razmak između sekcija (ako zatreba finije) */
.service-block + .service-block {
    margin-top: 0;
}

.k-service-flex {
    display: flex;
    justify-content: space-between; /* ključ → razdvaja levo i desno */
    align-items: flex-start;
    gap: 60px; /* razmak između teksta i slike */
}

/* Leva strana – uža kolona, čitljiva širina */
.k-service-left {
    flex: 1;
    max-width: 720px;
}

/* Desna strana – slika */
.k-service-right {
    flex-shrink: 0; /* sprečava skupljanje slike */
}

.k-service-image {
    width: 660px; /* veličina slike */
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.k-service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Stilovi naslova i kategorije (po želji) */
.k-service-category {
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #777;
    display: inline-block;
    margin-bottom: 12px;
}

.k-service-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 24px;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 1280px) {
    :root {
        --svc-gap: 64px;
    }
    .service-block {
        margin: 120px 0;
    }
}

@media (max-width: 1024px) {
    :root {
        --svc-gap: 44px;
    }
    .service-block {
        grid-template-columns: 1fr; /* pada u jednu kolonu */
        margin: 90px 0;
    }
    .service-block.reverse {
        direction: ltr; /* ukida se “zamena strana” na mobilnom */
        grid-template-columns: 1fr;
    }
    .service-image {
        max-width: 100%;
    }
    .service-title {
        font-size: clamp(26px, 4.5vw, 32px);
    }
}

@media (max-width: 640px) {
    .service-block {
        margin: 32px 0;
    }
    .service-excerpt {
        font-size: 16px;
    }
}

/* Poštuj preferencije korisnika */
@media (prefers-reduced-motion: reduce) {
    .service-image img {
        transition: none;
    }
    .service-more {
        transition: none;
    }
}

/* Desktop fine-tune */
@media (max-width: 1200px) {
    .k-service-image {
        width: 460px;
    }
}

/* Tablet & phone: stak na kolone, full-width slika */
@media (max-width: 992px) {
    .k-service-flex {
        flex-direction: column;
        gap: 24px;
    }
    .k-service-left {
        max-width: none;
    }
    .k-service-right {
        align-self: stretch;
    }
    .k-service-image {
        width: 100%;
    }
}
