@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
  --font-default: "Nunito", sans-serif;
  --font-primary: "Nunito", sans-serif;
  --font-secondary: "Nunito", sans-serif;
}

:root {
  --color-default: #fff;
  --color-header: #fff;
  --color-primary: #065fa8;
  --color-primary-light: #1476C7;
  --color-primary-dark: #0B518A;
  --color-secondary: #fff;
  --color-background: #fff;
  --color-font: #222;
  --color-one: #fff;
  --color-ltt: #f49910;
  --color-two: #FCFAF5;
}

html {
  scroll-behavior: smooth;
}

html, body{
  width: 100%;
  height: 100%;
  background-color: var(--color-default);
  color: var(--color-font);
  font-family: var(--font-default);
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* ========== BODY PADDING ========== */
body {
    padding-top: 102px;
}
@media (max-width: 900px) {
    body {
        padding-top: 92px;
    }
}

/* ========== TOP MENU ========== */
.top-menu {
    background: var(--color-primary);
    padding: 6px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}
.top-menu .header-container {
    display: flex;
    justify-content: flex-end;
}
.contact-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}
.contact-icons a:hover {
    background: rgba(255, 255, 255, 0.15);
}
.contact-icons .cln-btn-whatsapp:hover {
    background: #25D366;
}

/* ========== MAIN HEADER ========== */
.main-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: fixed;
    top: 42px; /* visina top-menu – JS će ovo prepisati dinamički */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}
.main-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-header .header-container {
    height: 70px;
}

/* ========== LOGO ========== */
.logo a {
    display: block;
    line-height: 0;
}
.logo img {
    height: 52px;
    width: auto;
    display: block;
}

/* ========== NAV ========== */
.nav {
    display: flex;
    align-items: center;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links > li > a {
    display: block;
    padding: 8px 14px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-font);
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-links > li > a:hover {
    color: var(--color-primary);
    background: #eef4fb;
}
.nav-links > li > a.active {
    color: var(--color-primary);
}
.nav-links > li > a.nav-cta {
    background: var(--color-primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    margin-left: 6px;
}
.nav-links > li > a.nav-cta:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

/* ========== DROPDOWN ========== */
.nav-links .dropdown {
    position: relative;
}
.nav-links .dropdown-toggle {
    display: flex !important;
    align-items: center;
    gap: 6px;
}
.nav-links .dropdown-toggle .fa-caret-down {
    font-size: 11px;
    color: #999;
    transition: transform 0.2s;
}

/* Desktop – klik otvara/zatvara */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    min-width: 230px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
    z-index: 100;
    overflow: hidden;
    animation: fadeInDown 0.18s ease;
}
.nav-links .dropdown.open .dropdown-menu {
    display: block;
}
.nav-links .dropdown.open .fa-caret-down {
    transform: rotate(180deg);
    color: var(--color-primary);
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.dropdown-menu li {
    list-style: none;
}
.dropdown-menu li a {
    display: block;
    padding: 11px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.dropdown-menu li:last-child a {
    border-bottom: none;
}
.dropdown-menu li a:hover {
    background: #eef4fb;
    color: var(--color-primary);
    padding-left: 24px;
}

/* ========== HAMBURGER ========== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 22px;
    color: var(--color-primary);
    margin-left: 8px;
}

/* ========== MOBILE ========== */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
        align-items: center;
    }
    .main-header .header-container {
        height: 60px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 0;
        border-top: 1px solid #e8e8e8;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        z-index: 998;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links > li > a {
        padding: 12px 24px;
        border-radius: 0;
        font-size: 15px;
    }
    .nav-links > li > a.nav-cta {
        margin: 8px 16px;
        border-radius: 6px;
        text-align: center;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        border-top: 1px solid #f0f0f0;
        animation: none;
    }
    .dropdown-menu li a {
        padding-left: 36px;
    }
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: #fff;
    padding: 80px 0 64px;
    overflow: hidden;
}
.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ========== EYEBROW ========== */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef4fb;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.hero-eyebrow span {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* ========== HEADINGS ========== */
.hero-title h1 {
    font-family: var(--font-primary);
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 800;
    color: #111;
    line-height: 1.13;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}
.hero-title h1 strong {
    color: var(--color-primary);
    font-weight: 800;
}
.hero-title h2 {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: #666;
    line-height: 1.65;
    margin-bottom: 22px;
}

/* ========== DESCRIPTION ========== */
.hero-desc {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}
.hero-desc strong {
    color: #333;
    font-weight: 700;
}

/* ========== CTA + TRUST ========== */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}
.btn-primary .fa {
    font-size: 16px;
}
.trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #444;
}
.trust-badge .fa {
    color: var(--color-primary);
    font-size: 13px;
}
.trust-sep {
    width: 1px;
    height: 14px;
    background: #ddd;
}

/* ========== BENEFIT CARDS ========== */
.benefits {
    border-top: 1px solid #f0f0f0;
    padding-top: 28px;
}
.benefits h3 {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 16px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.benefit-card {
    background: #f8fafd;
    border: 1px solid #e3ecf7;
    border-radius: 12px;
    padding: 16px 14px 18px;
    transition: border-color .2s, box-shadow .2s;
}
.benefit-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: 0 4px 16px rgba(6, 95, 168, .08);
}
.benefit-card-icon {
    width: 34px;
    height: 34px;
    background: var(--color-primary);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.benefit-card-icon .fa {
    color: #fff;
    font-size: 15px;
}
.benefit-card h4 {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.35;
}
.benefit-card p {
    font-family: var(--font-primary);
    font-size: 11.5px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========== HERO IMAGE ========== */
.hero-right {
    position: relative;
}
.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

/* ========== IMAGE OVERLAY BADGES ========== */
.image-benefits-overlay {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
}
.image-benefit {
    background: #fff;
    border: 1px solid #e3ecf7;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 10px 10px 0;
    padding: 12px 16px;
    transition: border-color .2s;
}
.image-benefit:hover {
    border-left-color: var(--color-ltt);
}
.image-benefit h5 {
    font-family: var(--font-primary);
    font-size: 12.5px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}
.image-benefit p {
    font-family: var(--font-primary);
    font-size: 11.5px;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-right {
        order: -1;
    }
    .hero-image img {
		
    }
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .hero-section {
        padding: 48px 0 40px;
    }
    .hero-title h1 {
        font-size: 28px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========== SECTION TWO ========== */
.section-two {
    padding: 80px 0 72px;
    background: #fff;
}
.section-header {
    max-width: 1200px;
    margin: 0 auto 52px;
    padding: 0 24px;
    text-align: center;
}
.section-two h2 {
    font-family: var(--font-primary);
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 800;
    color: #111;
    letter-spacing: -.02em;
    margin-bottom: 12px;
    line-height: 1.2;
}
.gradient-line {
    width: 52px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
    margin: 0 auto 16px;
}
.section-subtitle {
    font-family: var(--font-primary);
    font-size: 15px;
    color: #666;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== GRIDS ========== */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    gap: 24px;
}
.services-row-three {
    grid-template-columns: repeat(3, 1fr);
}
.services-row-two {
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
    margin-top: 24px;
}

/* ========== CARD ========== */
.svc-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e3ecf7;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(6, 95, 168, .10);
    border-color: #b5d4f4;
}

/* ========== IMAGE ========== */
.svc-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #eef4fb;
}
.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.svc-card:hover .svc-img img {
    transform: scale(1.04);
}

/* Fallback ako slika ne postoji */
.svc-img img[src=""],
.svc-img img:not([src]) {
    display: none;
}

/* ========== BADGE ========== */
.svc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 20px;
    pointer-events: none;
}
.svc-badge--amber {
    background: var(--color-ltt);
}
.svc-badge--green {
    background: #3b6d11;
}

/* ========== BODY ========== */
.svc-body {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.svc-body h3 {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.3;
}
.svc-body p {
    font-family: var(--font-primary);
    font-size: 13.5px;
    color: #666;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
}

/* ========== LINK ========== */
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap .2s ease, color .2s ease;
    align-self: flex-start;
}
.svc-link:hover {
    gap: 12px;
    color: var(--color-primary-dark);
}
.svc-link .fa {
    font-size: 12px;
    transition: transform .2s ease;
}
.svc-link:hover .fa {
    transform: translateX(2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
    .services-row-three {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-row-two {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
    }
}
@media (max-width: 600px) {
    .section-two {
        padding: 52px 0 44px;
    }
    .services-row-three,
    .services-row-two {
        grid-template-columns: 1fr;
    }
    .svc-img {
        height: 180px;
    }
}

/* ========== SECTION ONE ========== */
.section-one {
    padding: 80px 0 72px;
    background: var(--color-two);
}
.section-one-header {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 24px;
    text-align: center;
}
.section-one h2 {
    font-family: var(--font-primary);
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 800;
    color: #111;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}
.section-h3 {
    font-family: var(--font-primary);
    font-size: 15px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== GRID ========== */
.standort-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* ========== MAP BOX ========== */
.standort-map-box {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e3ecf7;
    background: #fff;
}
.ltt-map {
    width: 100%;
    height: 340px;
    background: #e8f0f8;
    display: block;
}

/* ========== CONTACT STRIP ========== */
.contact-strip {
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #f0f0f0;
    font-style: normal;
}
.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 13.5px;
    color: #333;
}
.contact-row .fa {
    width: 32px;
    height: 32px;
    background: #eef4fb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 14px;
    flex-shrink: 0;
}
.contact-row a {
    color: #333;
    text-decoration: none;
    transition: color .2s;
}
.contact-row a:hover {
    color: var(--color-primary);
}
.osm-note {
    font-family: var(--font-primary);
    font-size: 11px;
    color: #aaa;
    padding: 10px 22px 12px;
    border-top: 1px solid #f5f5f5;
    line-height: 1.5;
}
.osm-note a {
    color: #999;
    text-decoration: underline;
}

/* ========== INFO CARD ========== */
.standort-info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    background: #fff;
    border: 1px solid #e3ecf7;
    border-radius: 16px;
    padding: 30px 30px 32px;
}
.info-card h2 {
    font-family: var(--font-primary);
    font-size: 21px;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
}
.info-card h3 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
}
.info-card > p {
    font-family: var(--font-primary);
    font-size: 13.5px;
    color: #555;
    line-height: 1.78;
    margin-bottom: 20px;
}
.info-card strong {
    color: #222;
    font-weight: 700;
}

/* ========== INFO LIST ========== */
.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 13.5px;
    color: #444;
    line-height: 1.65;
}
.info-bullet {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: #eef4fb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.info-bullet .fa {
    font-size: 11px;
    color: var(--color-primary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 860px) {
    .standort-grid {
        grid-template-columns: 1fr;
    }
    .ltt-map {
        height: 280px;
    }
}
@media (max-width: 560px) {
    .section-one {
        padding: 52px 0 44px;
    }
    .info-card {
        padding: 22px 20px 24px;
    }
}

/* ========== SECTION DETAIL ========== */
.section-detail {
    padding: 80px 0 72px;
    background: #fff;
}
.section-detail-header {
    max-width: 1200px;
    margin: 0 auto 52px;
    padding: 0 24px;
    text-align: center;
}
.section-detail h2 {
    font-family: var(--font-primary);
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 800;
    color: #111;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}
.section-detail-sub {
    font-family: var(--font-primary);
    font-size: 15px;
    color: #666;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-detail-sub strong {
    color: #333;
    font-weight: 700;
}

/* ========== GRID ========== */
.detail-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* ========== CARD ========== */
.detail-card {
    background: #fff;
    border: 1px solid #e3ecf7;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(6, 95, 168, .09);
    border-color: #b5d4f4;
}

/* ========== TOP BAND ========== */
.detail-card-top {
    background: #eef4fb;
    padding: 26px 28px 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border-bottom: 1px solid #e3ecf7;
}
.detail-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--color-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-icon .fa {
    font-size: 22px;
    color: #fff;
}
.detail-card-top-text h3 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-bottom: 7px;
    line-height: 1.35;
}
.detail-card-top-text p {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ========== BODY ========== */
.detail-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ========== LIST ========== */
.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
    flex: 1;
}
.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-family: var(--font-primary);
    font-size: 13.5px;
    color: #444;
    line-height: 1.65;
}
.detail-chk {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: #eef4fb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.detail-chk .fa {
    font-size: 10px;
    color: var(--color-primary);
}

/* ========== FOOTER ========== */
.detail-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.detail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .15s;
}
.detail-link:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}
.detail-link .fa {
    font-size: 12px;
    transition: transform .2s;
}
.detail-link:hover .fa {
    transform: translateX(3px);
}
.detail-tag {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #5b8fc4;
    background: #eef4fb;
    padding: 5px 13px;
    border-radius: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 860px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 560px) {
    .section-detail {
        padding: 52px 0 44px;
    }
    .detail-card-top {
        flex-direction: column;
        gap: 14px;
    }
    .detail-card-top,
    .detail-card-body {
        padding-left: 20px;
        padding-right: 20px;
    }
    .detail-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========== SECTION CTA ========== */
.section-cta {
    background: var(--color-primary);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

/* Dekorativan krug u pozadini – čist, bez gradijenata */
.section-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
    pointer-events: none;
}
.section-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, .03);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ========== EYEBROW ========== */
.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
}
.cta-eyebrow span {
    width: 6px;
    height: 6px;
    background: var(--color-ltt);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* ========== HEADINGS ========== */
.cta-h2 {
    font-family: var(--font-primary);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}
.cta-h2 em {
    color: var(--color-ltt);
    font-style: normal;
}
.gradient-line-w {
    width: 48px;
    height: 3px;
    background: var(--color-ltt);
    border-radius: 2px;
    margin: 0 auto 18px;
}
.cta-h3 {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, .80);
    line-height: 1.7;
    margin-bottom: 14px;
}
.cta-h3 strong {
    color: #fff;
    font-weight: 700;
}
.cta-p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.78;
    max-width: 600px;
    margin: 0 auto 38px;
}

/* ========== BUTTONS ========== */
.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Primarni – WhatsApp */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-ltt);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 800;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.cta-btn-primary:hover {
    background: #d4830d;
    transform: translateY(-2px);
    color: #fff;
}
.cta-btn-primary .fa {
    font-size: 16px;
}

/* Sekundarni – Telefon / Email */
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .10);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 13.5px;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .20);
    text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
    color: #fff;
}
.cta-btn-secondary .fa {
    font-size: 14px;
    opacity: .85;
}

/* ========== TRUST STRIP ========== */
.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .60);
}
.cta-trust-item .fa {
    font-size: 13px;
    color: rgba(255, 255, 255, .40);
}
.cta-trust-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .15);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
    .section-cta {
        padding: 56px 20px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-btn-primary,
    .cta-btn-secondary {
        justify-content: center;
    }
    .cta-trust-sep {
        display: none;
    }
    .cta-trust {
        gap: 14px;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: #0d1b2a;
    padding: 64px 0 0;
}

.container-b {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ========== LINE-UP animacija (opcionalno) ========== */
.line-up {
    animation: lineUp .6s ease both;
}
@keyframes lineUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========== BOX ========== */
.box-b h4 {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .40);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.box-b p {
    font-family: var(--font-primary);
    font-size: 13.5px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.box-b p strong {
    color: #fff;
    font-weight: 700;
}

/* ========== IKONE ========== */
.box-b p .fa {
    font-size: 13px;
    color: var(--color-primary-light);
    width: 16px;
    flex-shrink: 0;
    text-align: center;
}
.box-b p .fa-whatsapp {
    color: #25D366;
    font-size: 15px;
}

/* ========== LINKOVI ========== */
.box-b a {
    font-family: var(--font-primary);
    font-size: 13.5px;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .2s;
}
.box-b a:hover {
    color: #fff;
}

/* Leistungen box – linkovi bez ikona */
.box-b:nth-child(2) p,
.box-b:nth-child(3) p {
    gap: 0;
}
.box-b:nth-child(2) p::before {
    content: '→';
    font-size: 12px;
    color: var(--color-primary-light);
    margin-right: 8px;
    transition: transform .2s;
    display: inline-block;
}
.box-b:nth-child(2) p:hover::before {
    transform: translateX(3px);
}

/* ========== COPYRIGHT ========== */
.copyright {
    margin-top: 52px;
}
.border-line {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin: 0 24px;
}
.copyright p {
    font-family: var(--font-primary);
    font-size: 12.5px;
    color: rgba(255, 255, 255, .35);
    text-align: center;
    padding: 20px 24px 24px;
    margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 860px) {
    .container-b {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .box-b:first-child {
        grid-column: 1 / -1;
    }
}
@media (max-width: 520px) {
    .footer {
        padding: 48px 0 0;
    }
    .container-b {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .box-b:first-child {
        grid-column: auto;
    }
}

    #cookie-consent-banner {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 520px;
        background: #222;
        color: #fff;
        padding: 20px 25px;
        text-align: center;
        z-index: 9999;
        font-size: 15px;
        line-height: 1.4em;
        border-radius: 14px;
        box-shadow: 0 6px 25px rgba(0,0,0,0.35);
        font-family: Arial, sans-serif;
    }
    #cookie-consent-banner button {
        margin: 8px 6px 0;
        padding: 9px 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.2s ease-in-out;
    }
    #acceptCookies, #confirmSelection {
        background: #01b803;
        color: #fff;
    }
    #acceptCookies:hover, #confirmSelection:hover {
        background: #029a03;
        transform: translateY(-1px);
    }
    #rejectCookies {
        background: #e30000;
        color: #fff;
    }
    #rejectCookies:hover {
        background: #c20000;
        transform: translateY(-1px);
    }
    .cookie-toggle-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 8px 0;
        font-size: 14px;
    }
    .cookie-switch {
        position: relative;
        display: inline-block;
        width: 52px;
        height: 26px;
    }
    .cookie-switch input { display:none; }
    .cookie-slider {
        position: absolute;
        cursor: pointer;
        top:0; left:0; right:0; bottom:0;
        background-color:#ccc;
        transition:.4s;
        border-radius: 34px;
    }
    .cookie-slider:before {
        position: absolute;
        content:"";
        height:20px; width:20px;
        left:3px; bottom:3px;
        background-color:white;
        transition:.4s;
        border-radius:50%;
    }
    .cookie-switch input:checked + .cookie-slider {
        background-color:#01b803;
    }
    .cookie-switch input:checked + .cookie-slider:before {
        transform: translateX(26px);
    }

    #cookie-settings-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #444;
        color: #fff;
        border: none;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 14px;
        cursor: pointer;
        z-index: 9998;
        display: none;
    }
    #cookie-settings-btn:hover {
        background: #666;
    }

    @media (max-width:600px){
        #cookie-consent-banner { font-size:14px; padding:15px; }
        #cookie-consent-banner button { width:100%; margin:6px 0; }
    }