/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
    --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-body: 'Nunito Sans', 'Helvetica Neue', sans-serif;

    /* Nav colour palette – deep olive / forest */
    --nav-bg: #161616;
    --nav-bg-scroll: #0d0d0d;
    --nav-border: rgba(232, 101, 26, 0.18);

    --nav-text: #e8e8e8;
    --nav-text-hover: #ffffff;
    --nav-text-muted: rgba(232, 232, 232, 0.5);

    --cta-bg: #e8651a;
    --cta-bg-hover: #ff7a25;
    --cta-text: #ffffff;

    --accent: #e8651a;

    /* Spacing */
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;

    --radius-sm: .375rem;
    --radius-full: 9999px;
    --transition: 180ms cubic-bezier(.16, 1, .3, 1);

    --text-xs: clamp(.75rem, .7rem + .25vw, .875rem);
    --text-sm: clamp(.875rem, .8rem + .35vw, 1rem);
    --text-base: clamp(1rem, .95rem + .25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + .75vw, 1.5rem);
}

/* ─── RESET / BASE ──────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    background: #000000;
    color: var(--nav-text);
    min-height: 200vh;
    /* demo scroll prostor */
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
}

a,
button {
    transition:
        color var(--transition),
        background var(--transition),
        opacity var(--transition),
        transform var(--transition);
}

/* ── Fade-in animacije ─────────────────────────────────────
   Klasa .fade-in se dodaje automatski via JS.
   .is-visible se dodaje kada element uđe u viewport.
────────────────────────────────────────────────────────── */

/* Sve animacije su zamatane u prefers-reduced-motion
   da poštujemo korisnike koji ne žele animacije         */
@media (prefers-reduced-motion: no-preference) {

    /* Koristimo CSS varijable da izbjegnemo override konflikte */
    .fade-in {
        opacity: 0;
        transform: translate(var(--fade-x, 0px), var(--fade-y, 24px));
        transition:
            opacity 750ms cubic-bezier(.16, 1, .3, 1),
            transform 900ms cubic-bezier(.16, 1, .3, 1);
        will-change: opacity, transform;
    }

    .fade-in.is-visible {
        opacity: 1;
        transform: translate(0px, 0px);
    }

    /* Varijante smjera – samo postave varijable */
    .fade-in--left {
        --fade-x: -28px;
        --fade-y: 0px;
    }

    .fade-in--right {
        --fade-x: 28px;
        --fade-y: 0px;
    }

    /* Stagger kašnjenja */
    .fade-in[data-delay="1"] {
        transition-delay: 120ms;
    }

    .fade-in[data-delay="2"] {
        transition-delay: 200ms;
    }

    .fade-in[data-delay="3"] {
        transition-delay: 320ms;
    }

    .fade-in[data-delay="4"] {
        transition-delay: 400ms;
    }

    .fade-in[data-delay="5"] {
        transition-delay: 480ms;
    }

    .fade-in[data-delay="6"] {
        transition-delay: 560ms;
    }
}

.hero__content,
.hero__info,
.about-hero__inner,
.gal-hero__inner,
.section-pretitle,
.section-title,
.about-process__lead,
.about-process__header,
.about-values__header,
.gallery__filters,
.val-card,
.about-who__text,
.about-who__visual,
.ptl-item,
.process-col__header,
.about-cta__title,
.about-cta__sub,
.about-cta__actions,
.gallery__cta,
.gallery__item,
.pricing__header,
.pricing__card,
.pricing__extra,
.pricing__highlight-bar,
.veh-card,
.veh-diagram-wrap,
.why__header,
.why__card,
.why__cta-wrap,
.steps__header,
.steps__step,
.steps__cta-wrap,
.footer__col,
.footer__bottom,
.uvj-hero__inner,
.ktk-hero__inner,
.ktk-cards__inner,
.ktk-map,
.ktk-form-wrap__header,
.ktk-form,
.ktk-hours,
.ktk-directions,
.ktk-docs__group,
.ktk-faq__grid,
.uvj-nav,
.uvj-intro,
.uvj-section,
.uvj-docs-cta,
.reviews__rating-summary,
.reviews__card,
.reviews__cta {
    opacity: 0;
}


/* ─── NAV WRAPPER ───────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* blaga sjena prema dolje */
    box-shadow:
        0 1px 3px rgba(0, 0, 0, .25),
        0 4px 16px rgba(0, 0, 0, .18);
    transition: 0.5s;
}

/* scrolled state – dodaje JS klasu */
.nav.scrolled {
    background: var(--nav-bg-scroll);
    box-shadow: 0 2px 24px rgba(0, 0, 0, .35);
    transition: 0.5s;
}

.nav__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--space-6);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

/* ─── BRAND (logo + naziv) ──────────────────────────────── */
.nav__brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    color: var(--nav-text);
    flex-shrink: 0;
}

.nav__logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.nav__name {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 1.2rem + .8vw, 1.85rem);
    letter-spacing: .06em;
    line-height: 1;
    /* gradient slova: narančasta → zelena */
    background: linear-gradient(115deg, #e8651a 0%, #c8cdd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__name span {
    /* sitni tag ispod naziva */
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    -webkit-text-fill-color: var(--nav-text-muted);
    color: var(--nav-text-muted);
    margin-top: .1rem;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

/* ─── DESKTOP LINKS ─────────────────────────────────────── */
.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav__link {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--nav-text);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    letter-spacing: .04em;
}

/* podvlaka – raste iz centra */
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--nav-text-hover);
}

.nav__link:hover::after {
    width: calc(100% - var(--space-8));
}

.nav__link:active {
    opacity: .75;
}

/* ─── CTA GUMB "REZERVIRAJ" ─────────────────────────────── */
.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--cta-text);
    background: var(--cta-bg);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    margin-left: var(--space-2);
    white-space: nowrap;
    box-shadow:
        0 2px 8px rgba(224, 115, 24, .35),
        0 0 0 0 rgba(224, 115, 24, .5);
}

.nav__cta:hover {
    background: var(--cta-bg-hover);
    transform: translateY(-1px);
    box-shadow:
        0 4px 16px rgba(245, 130, 32, .4),
        0 0 0 0 rgba(245, 130, 32, .4);
}

.nav__cta:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(224, 115, 24, .3);
}

/* ikona strelice unutar CTA */
.nav__cta-icon {
    transition: transform var(--transition);
}

.nav__cta:hover .nav__cta-icon {
    transform: translateX(3px);
}

/* ─── HAMBURGER (mobile) ────────────────────────────────── */
.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: var(--space-2);
    border-radius: var(--radius-sm);
    color: var(--nav-text);
}

.nav__hamburger:hover {
    color: var(--nav-text-hover);
    background: rgba(255, 255, 255, .05);
}

.nav__hamburger-bar {
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: var(--radius-full);
    transition:
        transform var(--transition),
        opacity var(--transition),
        width var(--transition);
    transform-origin: center;
}

/* animacija u X */
.nav__hamburger[aria-expanded="true"] .nav__hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE MENU DRAWER ────────────────────────────────── */
.nav__mobile {
    display: none;
    flex-direction: column;
    background: var(--nav-bg-scroll);
    border-top: 1px solid var(--nav-border);
    padding: var(--space-4) var(--space-6) var(--space-6);
    gap: var(--space-1);

    /* slide-down animacija */

    transition:
        max-height 280ms cubic-bezier(.16, 1, .3, 1),
        opacity 50ms ease,
        padding 280ms cubic-bezier(.16, 1, .3, 1);
}

.nav__mobile.open {
    max-height: 300px;
    opacity: 1;
    padding: var(--space-4) var(--space-6) var(--space-6);
}

.nav__mobile-link {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--nav-text);
    padding: var(--space-3) var(--space-2);
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--nav-border);
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.nav__mobile-link:last-of-type {
    border-bottom: none;
}

.nav__mobile-link:hover {
    color: var(--nav-text-hover);
    background: rgba(255, 255, 255, .04);
}

.nav__mobile-link:active {
    opacity: .7;
}

.nav__mobile-cta {
    margin-top: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--cta-text);
    background: var(--cta-bg);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 12px rgba(224, 115, 24, .35);
}

.nav__mobile-cta:hover {
    background: var(--cta-bg-hover);
}

.nav__mobile-cta:active {
    opacity: .85;
}

/* ═══════════════════════════════════════════════════════════
   HERO SEKCIJA
═══════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    overflow: hidden;

    /* Slike se stavlja OVDJE da ::before može naslijediti */
    background-image: url('../mediji/quads.jpeg');

    /* Sakrij direktnu pozadinsku sliku – prikazuje je ::before */
    background-size: 0 !important;

    /* KLJUČNO: zatvara fixed ::before unutar sekcije */
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

/* Fiksirana slika kao pseudo-element – radi na iOS */
.hero::before {
    content: '';
    position: fixed;
    /* ← ne absolute, nego fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform;
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.45) 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e8651a, transparent);
    z-index: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding: 5rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: center;
}

/* ── LIJEVO ───────────────────────────────────────────────── */
.hero__pretitle {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.25rem;
    background-color: #e8661a90;
    padding: 10px;
    width: fit-content;
    border-radius: 50px;
}

.hero__pretitle-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(1.5);
    }
}

.hero__title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: .03em;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.hero__title-accent {
    color: #e8651a;
}

.hero__subtitle {
    font-size: clamp(.95rem, 1.2vw, 1.1rem);
    color: rgba(232, 232, 232, .75);
    max-width: 46ch;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1.75rem;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .75rem 1.75rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero__btn--primary {
    background: #e8651a;
    color: #fff;
    box-shadow: 0 4px 20px rgba(232, 101, 26, .4);
}

.hero__btn--primary:hover {
    background: #ff7a25;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232, 101, 26, .55);
}

.hero__btn--secondary {
    background: rgba(255, 255, 255, .08);
    color: #e8e8e8;
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
}

.hero__btn--secondary:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-2px);
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.hero__badge {
    font-size: .75rem;
    font-weight: 600;
    color: rgba(232, 232, 232, .65);
    letter-spacing: .05em;
}

.hero__badge+.hero__badge::before {
    content: '·';
    margin-right: .5rem;
}

/* ── DESNO: info kartice ──────────────────────────────────── */
.hero__info {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.hero__info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(22, 22, 22, 0.75);
    border: 1px solid rgba(232, 101, 26, .2);
    border-radius: .5rem;
    padding: .9rem 1.1rem;
    backdrop-filter: blur(12px);
    transition: border-color 180ms ease, background 180ms ease;
}

.hero__info-card:hover {
    border-color: rgba(232, 101, 26, .5);
    background: rgba(22, 22, 22, 0.9);
}

.hero__info-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(232, 101, 26, .15);
    border-radius: .375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8651a;
}

.hero__info-icon svg {
    width: 18px;
    height: 18px;
}

.hero__info-body {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
}

.hero__info-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(232, 232, 232, .45);
}

.hero__info-value {
    font-size: .9rem;
    font-weight: 600;
    color: #e8e8e8;
    text-decoration: none;
}

.hero__info-value small {
    font-size: .75rem;
    color: rgba(232, 232, 232, .5);
    font-weight: 400;
}

.hero__info-tel {
    color: #e8651a !important;
}

.hero__info-tel:hover {
    color: #ff7a25 !important;
}

/* ═══════════════════════════════════════════════════════════
   ZAŠTO ODABRATI NAS
═══════════════════════════════════════════════════════════ */

.why {
    background: #0d0d0d;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Dekorativni krug u pozadini */
.why::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 101, 26, .07) 0%, transparent 70%);
    pointer-events: none;
}

.why__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.why__header {
    text-align: center;
    margin-bottom: 4rem;
}

.why__pretitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #e8651a;
    margin-bottom: 1rem;
}

.why__pretitle-line {
    display: block;
    height: 1px;
    width: 40px;
    background: #e8651a;
    opacity: .5;
}

.why__title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: .04em;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 1rem;
}

.why__title span {
    color: #e8651a;
}

.why__lead {
    font-size: clamp(.9rem, 1.2vw, 1.05rem);
    color: rgba(232, 232, 232, .55);
    max-width: 52ch;
    margin-inline: auto;
    line-height: 1.65;
}

/* ── Grid ────────────────────────────────────────────────── */
.why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.why__card {
    position: relative;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: #161616;
    border: 1px solid rgba(232, 101, 26, .12);
    border-radius: .75rem;
    padding: 2rem 1.75rem;
    overflow: hidden;
    transition: border-color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.why__card:hover {
    border-color: rgba(232, 101, 26, .45);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4), 0 0 0 1px rgba(232, 101, 26, .15);
}

/* Narančasta linija pri vrhu kartice na hover */
.why__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8651a;
    transition: width 360ms ease;
}

.why__card:hover::before {
    width: 100%;
}

.why__card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(232, 101, 26, .1);
    border: 1px solid rgba(232, 101, 26, .2);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8651a;
    transition: background 260ms ease;
}

.why__card:hover .why__card-icon {
    background: rgba(232, 101, 26, .2);
}

.why__card-icon svg {
    width: 24px;
    height: 24px;
}

.why__card-body {
    flex: 1;
    min-width: 0;
}

.why__card-title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.35rem;
    letter-spacing: .05em;
    color: #ffffff;
    margin-bottom: .6rem;
    line-height: 1.1;
}

.why__card-text {
    font-size: .875rem;
    color: rgba(232, 232, 232, .55);
    line-height: 1.7;
}

/* Veliki broj u pozadini kartice */
.why__card-number {
    position: absolute;
    bottom: -10px;
    right: 16px;
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 5.5rem;
    line-height: 1;
    color: rgba(232, 101, 26, .06);
    pointer-events: none;
    user-select: none;
    transition: color 260ms ease;
}

.why__card:hover .why__card-number {
    color: rgba(232, 101, 26, .1);
}

/* ── CTA ─────────────────────────────────────────────────── */
.why__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}

.why__cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: #e8651a;
    padding: .85rem 2.25rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(232, 101, 26, .35);
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.why__cta:hover {
    background: #ff7a25;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232, 101, 26, .5);
}

.why__cta svg {
    transition: transform 180ms ease;
}

.why__cta:hover svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   KAKO REZERVIRATI – koraci
═══════════════════════════════════════════════════════════ */

.steps {
    background: #111111;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.steps::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 101, 26, .06) 0%, transparent 70%);
    pointer-events: none;
}

.steps__inner {
    max-width: 900px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.steps__header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.steps__pretitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #e8651a;
    margin-bottom: 1rem;
}

.steps__pretitle-line {
    display: block;
    height: 1px;
    width: 40px;
    background: #e8651a;
    opacity: .5;
}

.steps__title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: .04em;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 1rem;
}

.steps__title span {
    color: #e8651a;
}

.steps__lead {
    font-size: clamp(.9rem, 1.2vw, 1.05rem);
    color: rgba(232, 232, 232, .55);
    max-width: 52ch;
    margin-inline: auto;
    line-height: 1.65;
}

/* ── Track ───────────────────────────────────────────────── */
.steps__track {
    position: relative;
    display: flex;
    flex-direction: column;
}

.steps__line {
    position: absolute;
    top: 28px;
    left: 27px;
    width: 2px;
    height: calc(100% - 56px);
    background: linear-gradient(to bottom,
            #e8651a 0%,
            rgba(232, 101, 26, .5) 60%,
            transparent 100%);
    z-index: 0;
}

.steps__step {
    position: relative;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 3rem;
    z-index: 1;
}

.steps__step--last {
    padding-bottom: 0;
}

/* Kružić */
.steps__bubble {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #161616;
    border: 2px solid rgba(232, 101, 26, .35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: border-color 260ms ease, background 260ms ease;
}

.steps__step:hover .steps__bubble {
    border-color: #e8651a;
    background: rgba(232, 101, 26, .08);
}

.steps__bubble--accent {
    background: #e8651a !important;
    border-color: #e8651a !important;
    box-shadow: 0 0 0 6px rgba(232, 101, 26, .15);
}

.steps__bubble-num {
    position: absolute;
    top: -8px;
    right: -6px;
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: .8rem;
    background: #e8651a;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps__bubble--accent .steps__bubble-num {
    background: #fff;
    color: #e8651a;
}

.steps__bubble-icon {
    color: #e8651a;
}

.steps__bubble--accent .steps__bubble-icon {
    color: #fff;
}

.steps__bubble-icon svg {
    width: 22px;
    height: 22px;
}

/* Sadržaj */
.steps__content {
    flex: 1;
    background: #161616;
    border: 1px solid rgba(232, 101, 26, .12);
    border-radius: .75rem;
    padding: 1.5rem 1.75rem;
    margin-top: .25rem;
    transition: border-color 260ms ease, box-shadow 260ms ease;
}

.steps__step:hover .steps__content {
    border-color: rgba(232, 101, 26, .35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
}

.steps__content--accent {
    border-color: rgba(232, 101, 26, .35);
    background: linear-gradient(135deg, #1a1008 0%, #161616 100%);
}

.steps__step:hover .steps__content--accent {
    border-color: rgba(232, 101, 26, .6);
    box-shadow: 0 8px 40px rgba(232, 101, 26, .15);
}

.steps__step-title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.4rem;
    letter-spacing: .05em;
    color: #ffffff;
    margin-bottom: .6rem;
    line-height: 1;
}

.steps__step-text {
    font-size: .875rem;
    color: rgba(232, 232, 232, .6);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.steps__step-list {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps__step-list li {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(232, 232, 232, .5);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 9999px;
    padding: .2rem .75rem;
}

/* CTA */
.steps__cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    margin-top: 3.5rem;
}

.steps__cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: #e8651a;
    padding: .85rem 2.25rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(232, 101, 26, .35);
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.steps__cta:hover {
    background: #ff7a25;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232, 101, 26, .5);
}

.steps__cta svg {
    transition: transform 180ms ease;
}

.steps__cta:hover svg {
    transform: translateX(4px);
}

.steps__cta-note {
    font-size: .75rem;
    color: rgba(232, 232, 232, .35);
    letter-spacing: .06em;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */

.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(232, 101, 26, .15);
    padding-top: 4rem;
}

.footer__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* ── LIJEVO ───────────────────────────────────────────────── */
.footer__brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: #e8e8e8;
    margin-bottom: 1rem;
}

.footer__logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: .375rem;
}

.footer__brand-name {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.3rem;
    letter-spacing: .06em;
    line-height: 1;
    background: linear-gradient(115deg, #e8651a 0%, #c8cdd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__brand-name span {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    -webkit-text-fill-color: rgba(232, 232, 232, .45);
    color: rgba(232, 232, 232, .45);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    margin-top: .1rem;
}

.footer__desc {
    font-size: .82rem;
    color: rgba(232, 232, 232, .45);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 30ch;
}

.footer__nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.footer__nav a {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(232, 232, 232, .5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: color 180ms ease, gap 180ms ease;
}

.footer__nav a::before {
    content: '›';
    color: #e8651a;
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.footer__nav a:hover {
    color: #e8e8e8;
    gap: .6rem;
}

.footer__nav a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ── SREDINA ──────────────────────────────────────────────── */
.footer__col-title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.15rem;
    letter-spacing: .1em;
    color: #ffffff;
    margin-bottom: .35rem;
}

.footer__col-sub {
    font-size: .78rem;
    color: rgba(232, 232, 232, .4);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer__socials {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: .5rem;
    padding: .65rem .9rem;
    text-decoration: none;
    color: #e8e8e8;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer__social:hover {
    border-color: rgba(232, 101, 26, .4);
    background: rgba(232, 101, 26, .06);
    transform: translateX(3px);
}

.footer__social-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(232, 101, 26, .12);
    border-radius: .375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8651a;
}

.footer__social-icon--wa {
    background: rgba(37, 211, 102, .12);
    color: #25d366;
}

.footer__social-icon svg {
    width: 16px;
    height: 16px;
}

.footer__social-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .05rem;
}

.footer__social-name {
    font-size: .8rem;
    font-weight: 700;
    color: #e8e8e8;
    line-height: 1;
}

.footer__social-handle {
    font-size: .7rem;
    color: rgba(232, 232, 232, .4);
}

.footer__social-arrow {
    color: rgba(232, 232, 232, .25);
    flex-shrink: 0;
    transition: color 180ms ease, transform 180ms ease;
}

.footer__social:hover .footer__social-arrow {
    color: #e8651a;
    transform: translate(2px, -2px);
}

/* ── DESNO ────────────────────────────────────────────────── */
.footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.footer__contact-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: rgba(232, 101, 26, .1);
    border-radius: .375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8651a;
    margin-top: .05rem;
}

.footer__contact-icon svg {
    width: 16px;
    height: 16px;
}

.footer__contact-label {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(232, 232, 232, .35);
    margin-bottom: .15rem;
}

.footer__contact-value {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(232, 232, 232, .75);
    text-decoration: none;
}

.footer__contact-link {
    color: #e8651a;
    transition: color 180ms ease;
}

.footer__contact-link:hover {
    color: #ff7a25;
}

.footer__reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: #e8651a;
    padding: .7rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 3px 14px rgba(232, 101, 26, .35);
    transition: background 180ms ease, transform 180ms ease;
}

.footer__reserve-btn:hover {
    background: #ff7a25;
    transform: translateY(-1px);
}

.footer__reserve-btn svg {
    transition: transform 180ms ease;
}

.footer__reserve-btn:hover svg {
    transform: translateX(3px);
}

/* ── Donja traka ─────────────────────────────────────────── */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    flex-wrap: wrap;
    gap: .5rem;
}

.footer__copy,
.footer__made {
    font-size: .75rem;
    color: rgba(232, 232, 232, .25);
    letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════════
   CJENIK
═══════════════════════════════════════════════════════════ */

.pricing {
    background: #0d0d0d;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 101, 26, .05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.pricing__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.pricing__pretitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #e8651a;
    margin-bottom: 1rem;
}

.pricing__pretitle-line {
    display: block;
    height: 1px;
    width: 40px;
    background: #e8651a;
    opacity: .5;
}

.pricing__title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: .04em;
    line-height: 1;
    color: #fff;
    margin-bottom: 1rem;
}

.pricing__title span {
    color: #e8651a;
}

.pricing__lead {
    font-size: clamp(.9rem, 1.2vw, 1.05rem);
    color: rgba(232, 232, 232, .5);
    max-width: 48ch;
    margin-inline: auto;
    line-height: 1.65;
}

/* ── Dva glavna cjenika ──────────────────────────────────── */
.pricing__main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing__card {
    position: relative;
    background: #161616;
    border: 1px solid rgba(232, 101, 26, .15);
    border-radius: 1rem;
    padding: 2rem;
    overflow: hidden;
    transition: border-color 260ms ease, box-shadow 260ms ease opacity 750ms cubic-bezier(.16, 1, .3, 1);
}

.pricing__card:hover {
    border-color: rgba(232, 101, 26, .35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

.pricing__card--featured {
    border-color: rgba(232, 101, 26, .35);
    background: linear-gradient(145deg, #1c1008 0%, #161616 60%);
    box-shadow: 0 8px 32px rgba(232, 101, 26, .1);
}

.pricing__card--featured:hover {
    border-color: #e8651a;
    box-shadow: 0 16px 48px rgba(232, 101, 26, .2);
}

.pricing__card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: #e8651a;
    padding: .2rem .65rem;
    border-radius: 9999px;
}

.pricing__card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.pricing__card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(232, 101, 26, .1);
    border: 1px solid rgba(232, 101, 26, .2);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8651a;
}

.pricing__card-icon--accent {
    background: rgba(232, 101, 26, .2);
    border-color: rgba(232, 101, 26, .4);
}

.pricing__card-icon svg {
    width: 22px;
    height: 22px;
}

.pricing__card-title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.5rem;
    letter-spacing: .06em;
    color: #fff;
    line-height: 1;
    margin-bottom: .2rem;
}

.pricing__card-sub {
    font-size: .78rem;
    color: rgba(232, 232, 232, .4);
}

.pricing__card-info {
    font-size: .78rem;
    font-weight: 600;
    color: #e8651a;
    background: rgba(232, 101, 26, .08);
    border: 1px solid rgba(232, 101, 26, .2);
    border-radius: .375rem;
    padding: .4rem .75rem;
    margin-bottom: 1.25rem;
}

.pricing__rows {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.pricing__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem .75rem;
    border-radius: .5rem;
    transition: background 180ms ease;
}

.pricing__row:hover {
    background: rgba(255, 255, 255, .03);
}

.pricing__row--highlight {
    background: rgba(232, 101, 26, .07);
    border: 1px solid rgba(232, 101, 26, .2);
}

.pricing__row--highlight:hover {
    background: rgba(232, 101, 26, .1);
}

.pricing__row-label {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(232, 232, 232, .8);
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.pricing__row-label small {
    font-size: .68rem;
    color: rgba(232, 232, 232, .35);
    font-weight: 400;
}

.pricing__row-price {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.6rem;
    color: #e8651a;
    letter-spacing: .03em;
    line-height: 1;
}

.pricing__row-price em {
    font-style: normal;
    font-size: 1rem;
    color: rgba(232, 101, 26, .7);
}

.pricing__badge-soon {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #e8651a;
    background: rgba(232, 101, 26, .1);
    border: 1px solid rgba(232, 101, 26, .3);
    padding: .25rem .65rem;
    border-radius: 9999px;
}

.pricing__notes {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.pricing__note {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: rgba(232, 232, 232, .45);
}

.pricing__note svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #e8651a;
}

.pricing__note strong {
    color: rgba(232, 232, 232, .75);
}

/* ── Highlight traka ─────────────────────────────────────── */
.pricing__highlight-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(232, 101, 26, .12) 0%, rgba(232, 101, 26, .06) 100%);
    border: 1px solid rgba(232, 101, 26, .25);
    border-radius: .75rem;
    padding: 1.25rem 2rem;
    margin-bottom: 3rem;
}

.pricing__highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.pricing__highlight-item svg {
    width: 28px;
    height: 28px;
    color: #e8651a;
    flex-shrink: 0;
}

.pricing__highlight-label {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(232, 232, 232, .4);
    margin-bottom: .2rem;
}

.pricing__highlight-val {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.5rem;
    color: #e8651a;
    letter-spacing: .04em;
    line-height: 1;
}

.pricing__highlight-val small {
    font-family: 'Nunito Sans', sans-serif;
    font-size: .75rem;
    color: rgba(232, 232, 232, .45);
    font-weight: 400;
    letter-spacing: 0;
}

.pricing__highlight-divider {
    width: 1px;
    height: 48px;
    background: rgba(232, 101, 26, .25);
    flex-shrink: 0;
}

/* ── Section title ───────────────────────────────────────── */
.pricing__section-title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.3rem;
    letter-spacing: .12em;
    color: rgba(232, 232, 232, .5);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.pricing__section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .07);
}

/* ── Dodatne usluge ──────────────────────────────────────── */
.pricing__extras {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing__extra {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: .75rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: border-color 260ms ease, transform 260ms ease;
}

.pricing__extra:hover {
    border-color: rgba(232, 101, 26, .3);
    transform: translateY(-3px);
}

.pricing__extra-icon {
    width: 44px;
    height: 44px;
    background: rgba(232, 101, 26, .1);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8651a;
    margin: 0 auto .85rem;
}

.pricing__extra-icon svg {
    width: 20px;
    height: 20px;
}

.pricing__extra-title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1rem;
    letter-spacing: .07em;
    color: #fff;
    margin-bottom: .4rem;
}

.pricing__extra-text {
    font-size: .75rem;
    color: rgba(232, 232, 232, .4);
    line-height: 1.5;
    margin-bottom: .85rem;
}

.pricing__extra-price {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.4rem;
    color: #e8651a;
    letter-spacing: .03em;
    line-height: 1;
}

.pricing__extra-price em {
    font-style: normal;
    font-size: .95rem;
    color: rgba(232, 101, 26, .7);
}

.pricing__extra-price small {
    font-family: 'Nunito Sans', sans-serif;
    display: block;
    font-size: .68rem;
    color: rgba(232, 232, 232, .35);
    font-weight: 400;
    margin-top: .1rem;
}

/* ── Vozila ──────────────────────────────────────────────── */
.pricing__vehicles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing__vehicle {
    position: relative;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: .75rem;
    padding: 1.75rem;
    overflow: hidden;
}

.pricing__vehicle--available {
    border-color: rgba(232, 101, 26, .2);
}

.pricing__vehicle--unavailable {
    opacity: .5;
    filter: grayscale(.6);
}

.pricing__vehicle-unavail-badge,
.pricing__vehicle-avail-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .2rem .6rem;
    border-radius: 9999px;
}

.pricing__vehicle-unavail-badge {
    color: rgba(232, 232, 232, .6);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
}

.pricing__vehicle-avail-badge {
    color: #4ade80;
    background: rgba(74, 222, 128, .1);
    border: 1px solid rgba(74, 222, 128, .25);
}

.pricing__vehicle-name {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.6rem;
    letter-spacing: .07em;
    color: #fff;
    line-height: 1;
    margin-bottom: .3rem;
}

.pricing__vehicle-sub {
    font-size: .8rem;
    color: rgba(232, 232, 232, .45);
    margin-bottom: 1.1rem;
}

.pricing__vehicle-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.pricing__vehicle-specs li {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(232, 232, 232, .65);
    background: rgba(232, 101, 26, .08);
    border: 1px solid rgba(232, 101, 26, .15);
    border-radius: 9999px;
    padding: .25rem .7rem;
}

.pricing__vehicle-specs li svg {
    width: 12px;
    height: 12px;
    color: #e8651a;
}

/* ── Uvjeti + CTA ────────────────────────────────────────── */
.pricing__conditions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: .75rem;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.pricing__cond-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.75rem;
}

.pricing__cond-list li {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(232, 232, 232, .55);
}

.pricing__cond-list li svg {
    width: 15px;
    height: 15px;
    color: #e8651a;
    flex-shrink: 0;
}

.pricing__wa-cta {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: .85rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: .85rem;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .3);
    transition: background 180ms ease, transform 180ms ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing__wa-cta:hover {
    background: #1db954;
    transform: translateY(-2px);
}

.pricing__wa-cta svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pricing__wa-cta span {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.1rem;
    letter-spacing: .06em;
    opacity: .85;
}

.pricing__disclaimer {
    text-align: center;
    font-size: .72rem;
    color: rgba(232, 232, 232, .2);
    letter-spacing: .04em;
}

/* ─── VOZILA DIJAGRAM ──────────────────────────────────── */

.pricing__vehicles-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

/* ODES wrapper */
.veh-diagram-wrap {
    background: #161616;
    border: 1px solid rgba(232, 101, 26, .2);
    border-radius: .75rem;
    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
}

.veh-diagram-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(232, 101, 26, .06) 0%, transparent 70%);
    pointer-events: none;
}

.veh-diagram__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.veh-diagram__name {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.8rem;
    letter-spacing: .07em;
    color: #fff;
    line-height: 1;
    margin-bottom: .2rem;
}

.veh-diagram__sub {
    font-size: .78rem;
    color: rgba(232, 232, 232, .4);
}

.veh-diagram__avail {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #4ade80;
    background: rgba(74, 222, 128, .1);
    border: 1px solid rgba(74, 222, 128, .25);
    padding: .25rem .7rem;
    border-radius: 9999px;
    white-space: nowrap;
}

/* 3-stupčani dijagram */
.veh-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 260px;
    position: relative;
    z-index: 1;
}

.veh-diagram__col {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.veh-diagram__col--left {
    align-items: flex-end;
}

.veh-diagram__col--right {
    align-items: flex-start;
}

.veh-diagram__spec {
    display: flex;
    align-items: center;
}

.veh-diagram__spec-body {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.veh-diagram__spec-body--right {
    text-align: right;
}

.veh-diagram__spec-body--left {
    text-align: left;
}

.veh-diagram__spec-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(232, 232, 232, .35);
}

.veh-diagram__spec-val {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.4rem;
    letter-spacing: .04em;
    color: #fff;
    line-height: 1;
}

.veh-diagram__spec-val em {
    font-style: normal;
    font-size: .9rem;
    color: rgba(232, 101, 26, .8);
}

/* Konektori */
.veh-diagram__connector {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.veh-diagram__line {
    width: 55px;
    height: 1px;
    background: linear-gradient(to right, rgba(232, 101, 26, .15), rgba(232, 101, 26, .6));
}

.veh-diagram__connector--right .veh-diagram__line {
    background: linear-gradient(to left, rgba(232, 101, 26, .15), rgba(232, 101, 26, .6));
}

.veh-diagram__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #e8651a;
    box-shadow: 0 0 6px rgba(232, 101, 26, .7);
}

/* Slika */
.veh-diagram__center {
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veh-diagram__img-wrap {
    position: relative;
    width: 280px;
}

.veh-diagram__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .6));
    position: relative;
    z-index: 1;
}

.veh-diagram__img-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: rgba(232, 101, 26, .25);
    filter: blur(18px);
    border-radius: 50%;
    z-index: 0;
}

/* ═══════════════════════════════════════════════════════════
   O NAMA – stranica specifični stilovi
═══════════════════════════════════════════════════════════ */

/* ── Zajednički helperi ──────────────────────────────────── */
.section-pretitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #e8651a;
    margin-bottom: 1rem;
}

.section-pretitle-line {
    display: block;
    height: 1px;
    width: 40px;
    background: #e8651a;
    opacity: .5;
}

.section-title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    letter-spacing: .04em;
    line-height: 1;
    color: #fff;
    margin-bottom: 1rem;
}

.section-title span {
    color: #e8651a;
}

/* Active nav link */
.nav__link--active {
    color: #e8651a !important;
}

.nav__link--active::after {
    width: calc(100% - 2rem) !important;
}

/* ═══ PAGE HERO ═══════════════════════════════════════════ */
.about-hero {
    position: relative;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    overflow: hidden;

    /* Slike se stavlja OVDJE da ::before može naslijediti */
    background-image: url('../mediji/hero-bg.jpg');

    /* Sakrij direktnu pozadinsku sliku – prikazuje je ::before */
    background-size: 0 !important;

    /* KLJUČNO: zatvara fixed ::before unutar sekcije */
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .6) 100%);
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: fixed;
    /* ← ne absolute, nego fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform;
    pointer-events: none;
}

.about-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-inline: auto;
    padding-inline: 1.5rem;
    text-align: center;
}

.about-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(232, 232, 232, .45);
    margin-bottom: 2rem;
}

.about-hero__breadcrumb a {
    color: #e8651a;
    text-decoration: none;
}

.about-hero__breadcrumb a:hover {
    color: #ff7a25;
}

.about-hero__breadcrumb svg {
    width: 14px;
    height: 14px;
    color: rgba(232, 232, 232, .3);
}

.about-hero__title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1;
    letter-spacing: .03em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.about-hero__title span {
    color: #e8651a;
}

.about-hero__sub {
    font-size: clamp(.9rem, 1.3vw, 1.1rem);
    color: rgba(232, 232, 232, .65);
    line-height: 1.7;
    margin-bottom: 3.5rem;
}

.about-hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 22, .75);
    border: 1px solid rgba(232, 101, 26, .2);
    border-radius: .75rem;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
    gap: 1rem;
    width: max-content;
}

.about-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    padding: 0 1.5rem;
}

.about-hero__stat-num {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 2rem;
    letter-spacing: .04em;
    color: #e8651a;
    line-height: 1;
}

.about-hero__stat-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(232, 232, 232, .45);
}

.about-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(232, 101, 26, .2);
    flex-shrink: 0;
}

/* ═══ TKO SMO MI ══════════════════════════════════════════ */
.about-who {
    background: #0d0d0d;
    padding: 6rem 0;
}

.about-who__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
}

.about-who__text .section-pretitle {
    justify-content: flex-start;
}

.about-who__text .section-title {
    text-align: left;
}

.about-who__p {
    font-size: .95rem;
    color: rgba(232, 232, 232, .6);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-who__highlights {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-top: 1.75rem;
}

.about-who__hl {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .88rem;
    font-weight: 600;
    color: rgba(232, 232, 232, .7);
}

.about-who__hl svg {
    width: 17px;
    height: 17px;
    color: #e8651a;
    flex-shrink: 0;
}

.about-who__img-card {
    position: relative;
    border-radius: .75rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-who__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.8);
}

.about-who__img-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(22, 22, 22, .9);
    border: 1px solid rgba(232, 101, 26, .3);
    border-radius: .5rem;
    padding: .75rem 1rem;
    font-size: .8rem;
    font-weight: 700;
    color: #e8e8e8;
    backdrop-filter: blur(8px);
}

.about-who__img-badge svg {
    width: 16px;
    height: 16px;
    color: #e8651a;
    flex-shrink: 0;
}

/* ═══ VRIJEDNOSTI ═════════════════════════════════════════ */
.about-values {
    background: #111;
    padding: 6rem 0;
}

.about-values__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.about-values__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.val-card {
    background: #161616;
    border: 1px solid rgba(232, 101, 26, .12);
    border-radius: .75rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 260ms ease, transform 260ms ease, box-shadow 260ms ease opacity 750ms cubic-bezier(.16, 1, .3, 1);
}

.val-card:hover {
    border-color: rgba(232, 101, 26, .4);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.val-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8651a;
    transition: width 360ms ease;
}

.val-card:hover::before {
    width: 100%;
}

.val-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 101, 26, .1);
    border: 1px solid rgba(232, 101, 26, .2);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8651a;
    margin-bottom: 1.25rem;
}

.val-card__icon svg {
    width: 24px;
    height: 24px;
}

.val-card__title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.4rem;
    letter-spacing: .06em;
    color: #fff;
    line-height: 1;
    margin-bottom: .75rem;
}

.val-card__text {
    font-size: .875rem;
    color: rgba(232, 232, 232, .55);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.val-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 1rem;
}

.val-card__list li {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(232, 232, 232, .45);
    display: flex;
    align-items: center;
    gap: .45rem;
}

.val-card__list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e8651a;
    flex-shrink: 0;
}

/* ═══ PROCESS TIMELINE ════════════════════════════════════ */
.about-process {
    background: #0d0d0d;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-process::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 101, 26, .05) 0%, transparent 70%);
    pointer-events: none;
}

.about-process__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.about-process__header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-process__lead {
    font-size: clamp(.9rem, 1.2vw, 1rem);
    color: rgba(232, 232, 232, .5);
    max-width: 48ch;
    margin-inline: auto;
    line-height: 1.65;
}

.about-process__cols {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    align-items: start;
}

.process-col__header {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 2rem;
}

.process-col__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(232, 101, 26, .1);
    border: 1px solid rgba(232, 101, 26, .2);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8651a;
}

.process-col__icon--return {
    background: rgba(74, 222, 128, .08);
    border-color: rgba(74, 222, 128, .2);
    color: #4ade80;
}

.process-col__icon svg {
    width: 20px;
    height: 20px;
}

.process-col__title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.5rem;
    letter-spacing: .08em;
    color: #fff;
}

.process-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding-top: 4.5rem;
}

.process-separator__line {
    flex: 1;
    width: 1px;
    background: linear-gradient(to bottom, rgba(232, 101, 26, .3), transparent);
}

.process-separator__icon {
    width: 36px;
    height: 36px;
    background: rgba(232, 101, 26, .15);
    border: 1px solid rgba(232, 101, 26, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8651a;
    flex-shrink: 0;
    display: none;
}

.process-separator__icon svg {
    width: 16px;
    height: 16px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 21px;
    width: 2px;
    height: calc(100% - 44px);
    background: linear-gradient(to bottom, #e8651a 0%, rgba(232, 101, 26, .2) 70%, transparent 100%);
    z-index: 0;
}

.ptl-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.ptl-item:last-child {
    padding-bottom: 0;
}

.ptl-item__bubble {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #161616;
    border: 2px solid rgba(232, 101, 26, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 260ms ease;
}

.ptl-item__bubble span {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1rem;
    color: #e8651a;
    letter-spacing: .04em;
}

.ptl-item__bubble--accent {
    background: #e8651a;
    border-color: #e8651a;
    box-shadow: 0 0 0 5px rgba(232, 101, 26, .15);
}

.ptl-item__bubble--accent svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.ptl-item__bubble--green {
    background: #4ade80;
    border-color: #4ade80;
    box-shadow: 0 0 0 5px rgba(74, 222, 128, .15);
}

.ptl-item__bubble--green svg {
    width: 18px;
    height: 18px;
    color: #111;
}

.ptl-item:hover .ptl-item__bubble {
    border-color: #e8651a;
}

.ptl-item__content {
    flex: 1;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: .5rem;
    padding: 1rem 1.25rem;
    margin-top: .1rem;
    transition: border-color 260ms ease;
}

.ptl-item:hover .ptl-item__content {
    border-color: rgba(232, 101, 26, .25);
}

.ptl-item__content h4 {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.1rem;
    letter-spacing: .05em;
    color: #fff;
    line-height: 1;
    margin-bottom: .4rem;
}

.ptl-item__content p {
    font-size: .82rem;
    color: rgba(232, 232, 232, .55);
    line-height: 1.65;
}

.ptl-item__badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    color: #e8651a;
    background: rgba(232, 101, 26, .08);
    border: 1px solid rgba(232, 101, 26, .2);
    padding: .2rem .6rem;
    border-radius: 9999px;
    margin-top: .65rem;
}

.ptl-item__badge svg {
    width: 12px;
    height: 12px;
}

.ptl-item__badge--green {
    color: #4ade80;
    background: rgba(74, 222, 128, .08);
    border-color: rgba(74, 222, 128, .2);
}

/* ═══ CTA ═════════════════════════════════════════════════ */
.about-cta {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a03 50%, #0d0d0d 100%);
    border-top: 1px solid rgba(232, 101, 26, .15);
    padding: 6rem 0;
    text-align: center;
}

.about-cta__inner {
    max-width: 700px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.about-cta__title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: .04em;
    line-height: 1;
    color: #fff;
    margin-bottom: .85rem;
}

.about-cta__title span {
    color: #e8651a;
}

.about-cta__sub {
    font-size: 1rem;
    color: rgba(232, 232, 232, .5);
    margin-bottom: 2.5rem;
}

.about-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: .9rem 2rem;
    border-radius: 9999px;
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.about-cta__btn--wa {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .3);
}

.about-cta__btn--wa:hover {
    background: #1db954;
    transform: translateY(-2px);
}

.about-cta__btn--primary {
    background: #e8651a;
    color: #fff;
    box-shadow: 0 4px 18px rgba(232, 101, 26, .35);
}

.about-cta__btn--primary:hover {
    background: #ff7a25;
    transform: translateY(-2px);
}

.about-cta__btn svg {
    transition: transform 180ms ease;
}

.about-cta__btn:hover svg {
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════
   GALERIJA – stilovi
═══════════════════════════════════════════════════════════ */


.nav__link--active {
    color: #e8651a !important;
}

.nav__link--active::after {
    width: calc(100% - 2rem) !important;
}

/* ═══ PAGE HERO ════════════════════════════════════════════ */
.gal-hero {
    position: relative;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a03 60%, #0d0d0d 100%);
    overflow: hidden;
    text-align: center;
}

.gal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(232, 101, 26, .12) 0%, transparent 70%);
    pointer-events: none;
}

.gal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8651a 40%, transparent);
}

.gal-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.gal-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(232, 232, 232, .4);
    margin-bottom: 1.5rem;
}

.gal-hero__breadcrumb a {
    color: #e8651a;
    text-decoration: none;
}

.gal-hero__breadcrumb a:hover {
    color: #ff7a25;
}

.gal-hero__breadcrumb svg {
    width: 14px;
    height: 14px;
}

.gal-hero__title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: .04em;
    line-height: 1;
    color: #fff;
    margin-bottom: .75rem;
}

.gal-hero__title span {
    color: #e8651a;
}

.gal-hero__sub {
    font-size: clamp(.9rem, 1.3vw, 1.1rem);
    color: rgba(232, 232, 232, .5);
}

/* ═══ GALLERY SEKCIJA ══════════════════════════════════════ */
.gallery {
    background: #111;
    padding: 4rem 0 6rem;
}

.gallery__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* ── Filter buttons ─────────────────────────────────────── */
.gallery__filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.gallery__filter {
    font-family: 'Nunito Sans', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(232, 232, 232, .45);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 9999px;
    padding: .5rem 1.4rem;
    cursor: pointer;
    transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.gallery__filter:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .15);
}

.gallery__filter--active {
    color: #fff;
    background: #e8651a;
    border-color: #e8651a;
    box-shadow: 0 4px 16px rgba(232, 101, 26, .35);
}

.gallery__filter--active:hover {
    background: #ff7a25;
    border-color: #ff7a25;
}

/* ── Grid ───────────────────────────────────────────────── */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: .75rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: .5rem;
    cursor: pointer;
    background: #1a1a1a;
}

.gallery__item--wide {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item--hidden {
    display: none;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    display: block;
    transition: transform 400ms cubic-bezier(.16, 1, .3, 1), filter 400ms ease;
    filter: brightness(.85);
}

.gallery__item:hover img {
    transform: scale(1.06);
    filter: brightness(.6);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    opacity: 0;
    transition: opacity 300ms ease;
    padding: 1rem;
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.gallery__item-overlay span {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
}

/* ── Gallery CTA ────────────────────────────────────────── */
.gallery__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(22, 22, 22, .6);
    border: 1px solid rgba(232, 101, 26, .15);
    border-radius: .75rem;
}

.gallery__cta p {
    color: rgba(232, 232, 232, .55);
    font-size: .9rem;
}

.gallery__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #25d366;
    padding: .65rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, .3);
    transition: background 200ms ease, transform 200ms ease;
}

.gallery__cta-btn:hover {
    background: #1db954;
    transform: translateY(-2px);
}

/* ═══ LIGHTBOX ═════════════════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .94);
    backdrop-filter: blur(10px);
    cursor: zoom-out;
}

.lightbox__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 200ms ease, transform 200ms ease;
}

.lightbox__close:hover {
    background: rgba(232, 101, 26, .8);
    transform: rotate(90deg);
}

.lightbox__close svg {
    width: 20px;
    height: 20px;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 200ms ease, transform 200ms ease;
}

.lightbox__nav:hover {
    background: #e8651a;
}

.lightbox__nav--prev {
    left: 1.25rem;
}

.lightbox__nav--next {
    right: 1.25rem;
}

.lightbox__nav--prev:hover {
    transform: translateY(-50%) translateX(-2px);
}

.lightbox__nav--next:hover {
    transform: translateY(-50%) translateX(2px);
}

.lightbox__nav svg {
    width: 22px;
    height: 22px;
}

.lightbox__frame {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(90vw, 1100px);
    width: 100%;
    padding-inline: 5rem;
}

.lightbox__img-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.lightbox__img {
    max-height: 80vh;
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: .5rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .7);
    transition: opacity 220ms ease;
    display: block;
}

.lightbox__img.is-loading {
    opacity: 0;
}

.lightbox__spinner {
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox__spinner.is-visible {
    display: flex;
}

.lightbox__spin-svg {
    width: 48px;
    height: 48px;
    animation: lb-spin 900ms linear infinite;
}

@keyframes lb-spin {
    to {
        transform: rotate(360deg);
    }
}

.lightbox__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .75rem .25rem 0;
    gap: 1rem;
}

.lightbox__caption {
    font-size: .85rem;
    color: rgba(232, 232, 232, .55);
    font-weight: 600;
    flex: 1;
}

.lightbox__counter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: .08em;
    color: #e8651a;
    white-space: nowrap;
}

.lightbox__img.slide-left {
    animation: slideLeft 220ms ease forwards;
}

.lightbox__img.slide-right {
    animation: slideRight 220ms ease forwards;
}

.section-pretitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #e8651a;
    margin-bottom: 1rem;
}

.section-pretitle-line {
    display: block;
    height: 1px;
    width: 40px;
    background: #e8651a;
    opacity: .5;
}

.section-title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    letter-spacing: .04em;
    line-height: 1;
    color: #fff;
    margin-bottom: .5rem;
}

.section-title span {
    color: #e8651a;
}

/* ═══ HERO ════════════════════════════════════════════════ */
.ktk-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a03 60%, #0d0d0d 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ktk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 120%, rgba(232, 101, 26, .1) 0%, transparent 70%);
    pointer-events: none;
}

.ktk-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8651a 40%, transparent);
}

.ktk-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.ktk-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(232, 232, 232, .4);
    margin-bottom: 1.5rem;
}

.ktk-hero__breadcrumb a {
    color: #e8651a;
    text-decoration: none;
}

.ktk-hero__breadcrumb a:hover {
    color: #ff7a25;
}

.ktk-hero__breadcrumb svg {
    width: 14px;
    height: 14px;
}

.ktk-hero__title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: .04em;
    line-height: 1;
    color: #fff;
    margin-bottom: .75rem;
}

.ktk-hero__title span {
    color: #e8651a;
}

.ktk-hero__sub {
    font-size: clamp(.9rem, 1.2vw, 1.05rem);
    color: rgba(232, 232, 232, .5);
    line-height: 1.7;
}

/* ═══ KONTAKT KARTICE ═════════════════════════════════════ */
.ktk-cards {
    background: #111;
    padding: 3rem 0;
}

.ktk-cards__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ktk-card {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: .75rem;
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
    position: relative;
    overflow: hidden;
    min-width: max-content;
}

.ktk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8651a;
    transition: width 300ms ease;
}

.ktk-card:not(.ktk-card--static):hover {
    border-color: rgba(232, 101, 26, .35);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .4);
}

.ktk-card:not(.ktk-card--static):hover::before {
    width: 100%;
}

.ktk-card--wa {
    border-color: rgba(37, 211, 102, .2);
}

.ktk-card--wa::before {
    background: #25d366;
}

.ktk-card--wa .ktk-card__icon {
    background: rgba(37, 211, 102, .1);
    border-color: rgba(37, 211, 102, .2);
    color: #25d366;
}

.ktk-card--wa:hover {
    border-color: rgba(37, 211, 102, .5) !important;
}

.ktk-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: .5rem;
    background: rgba(232, 101, 26, .1);
    border: 1px solid rgba(232, 101, 26, .2);
    color: #e8651a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ktk-card__icon svg {
    width: 20px;
    height: 20px;
}

.ktk-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
}

.ktk-card__label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(232, 232, 232, .35);
}

.ktk-card__value {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ktk-card__hint {
    font-size: .72rem;
    color: rgba(232, 232, 232, .35);
}

.ktk-card__arrow {
    width: 18px;
    height: 18px;
    color: rgba(232, 232, 232, .2);
    flex-shrink: 0;
    transition: color 200ms ease, transform 200ms ease;
}

.ktk-card:hover .ktk-card__arrow {
    color: #e8651a;
    transform: translate(2px, -2px);
}

/* ═══ FORMA + KARTA LAYOUT ════════════════════════════════ */
.ktk-main {
    background: #0d0d0d;
    padding: 5rem 0;
}

.ktk-main__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

/* ── Forma ────────────────────────────────────────────────── */
.ktk-form-wrap__header {
    margin-bottom: 2rem;
}

.ktk-form-wrap__header .section-pretitle {
    justify-content: flex-start;
}

.ktk-form-wrap__header .section-title {
    text-align: left;
}

.ktk-form-wrap__sub {
    font-size: .9rem;
    color: rgba(232, 232, 232, .45);
    margin-top: .25rem;
}

.ktk-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.ktk-form__row {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.ktk-form__row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ktk-form__field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.ktk-form__label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(232, 232, 232, .45);
}

.ktk-form__input {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .5rem;
    padding: .75rem 1rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .9rem;
    color: #e8e8e8;
    outline: none;
    width: 100%;
    transition: border-color 200ms ease, box-shadow 200ms ease;
    appearance: none;
    -webkit-appearance: none;
}

.ktk-form__input::placeholder {
    color: rgba(232, 232, 232, .2);
}

.ktk-form__input:focus {
    border-color: #e8651a;
    box-shadow: 0 0 0 3px rgba(232, 101, 26, .12);
}

.ktk-form__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8651a' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.ktk-form__textarea {
    resize: vertical;
    min-height: 110px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(.4) sepia(1) saturate(3) hue-rotate(340deg);
    cursor: pointer;
}

.ktk-form__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: .5rem;
}

.ktk-form__submit {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: #e8651a;
    border: none;
    padding: .875rem 2rem;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(232, 101, 26, .35);
    transition: background 200ms ease, transform 200ms ease;
}

.ktk-form__submit:hover {
    background: #ff7a25;
    transform: translateY(-2px);
}

.ktk-form__submit:hover svg {
    transform: translateX(2px);
}

.ktk-form__submit svg {
    transition: transform 200ms ease;
}

.ktk-form__note {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: rgba(232, 232, 232, .35);
    font-weight: 600;
}

.ktk-form__note svg {
    color: #e8651a;
    flex-shrink: 0;
}

.ktk-form__success {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    background: rgba(74, 222, 128, .08);
    border: 1px solid rgba(74, 222, 128, .25);
    border-radius: .5rem;
    padding: 1.1rem 1.25rem;
    margin-top: .5rem;
    color: #4ade80;
}

.ktk-form__success svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: .1rem;
}

.ktk-form__success strong {
    display: block;
    font-size: .9rem;
    margin-bottom: .2rem;
}

.ktk-form__success span {
    font-size: .82rem;
    color: rgba(74, 222, 128, .7);
}

/* ═══ CHECKBOXOVI ════════════════════════════════════════ */
.ktk-form__checks {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: 1.25rem;
    margin-top: .25rem;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: .5rem;
}

.ktk-check {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    cursor: pointer;
    user-select: none;
}

/* Sakrij native checkbox */
.ktk-check__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Custom kvadratić */
.ktk-check__box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: -1.5px;
    border-radius: .3rem;
    border: 2px solid rgba(255, 255, 255, .2);
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 200ms ease, background 200ms ease;
}

.ktk-check__box svg {
    width: 12px;
    height: 12px;
    color: #fff;
    opacity: 0;
    transform: scale(.5);
    transition: opacity 180ms ease, transform 180ms ease;
}

/* Checked stanje */
.ktk-check__input:checked~.ktk-check__box {
    background: #e8651a;
    border-color: #e8651a;
    box-shadow: 0 0 0 3px rgba(232, 101, 26, .15);
}

.ktk-check__input:checked~.ktk-check__box svg {
    opacity: 1;
    transform: scale(1);
}

/* Focus (keyboard) */
.ktk-check__input:focus-visible~.ktk-check__box {
    outline: 2px solid #e8651a;
    outline-offset: 2px;
}

/* Label tekst */
.ktk-check__label {
    font-size: .83rem;
    color: rgba(232, 232, 232, .5);
    line-height: 1.5;
}

.ktk-check__label strong {
    color: rgba(232, 232, 232, .8);
    font-weight: 700;
}

/* Linkovi unutar labela */
.ktk-check__link {
    color: #e8651a;
    text-decoration: underline;
    text-decoration-color: rgba(232, 101, 26, .4);
    text-underline-offset: 2px;
    transition: color 150ms ease;
}

.ktk-check__link:hover {
    color: #ff7a25;
}

/* Hover na cijeli red */
.ktk-check:hover .ktk-check__box {
    border-color: rgba(232, 101, 26, .6);
}

/* ── Desna kolona ─────────────────────────────────────────── */
.ktk-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ktk-map {
    border-radius: .75rem;
    overflow: hidden;
    border: 1px solid rgba(232, 101, 26, .2);
}

.ktk-map__label {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #161616;
    padding: .75rem 1rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: rgba(232, 232, 232, .5);
}

.ktk-map__label svg {
    color: #e8651a;
}

.ktk-map__iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: none;
    filter: grayscale(.3) invert(.05);
}

.ktk-hours {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: .75rem;
    padding: 1.5rem;
}

.ktk-hours__item--note {
    opacity: .7;
}

.ktk-hours__time--muted {
    color: rgba(232, 232, 232, .45);
    font-weight: 500;
    font-style: italic;
}

.ktk-hours__title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.1rem;
    letter-spacing: .08em;
    color: #fff;
    margin-bottom: 1rem;
}

.ktk-hours__title svg {
    color: #e8651a;
}

.ktk-hours__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.ktk-hours__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .85rem;
}

.ktk-hours__item:last-child {
    border-bottom: none;
}

.ktk-hours__day {
    color: rgba(232, 232, 232, .5);
    font-weight: 600;
}

.ktk-hours__time {
    color: #fff;
    font-weight: 700;
}

.ktk-hours__item--accent .ktk-hours__day,
.ktk-hours__item--accent .ktk-hours__time {
    color: #4ade80;
}

.ktk-hours__note {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-top: .85rem;
    font-size: .72rem;
    color: rgba(232, 232, 232, .3);
    font-weight: 600;
}

.ktk-hours__note svg {
    color: #e8651a;
    flex-shrink: 0;
}

.ktk-directions {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: .75rem;
    padding: 1.5rem;
}

.ktk-directions__title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.1rem;
    letter-spacing: .08em;
    color: #fff;
    margin-bottom: 1rem;
}

.ktk-directions__title svg {
    color: #e8651a;
}

.ktk-directions__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.ktk-directions__list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .83rem;
    color: rgba(232, 232, 232, .5);
    font-weight: 600;
    line-height: 1.5;
}

.ktk-directions__list li svg {
    width: 16px;
    height: 16px;
    color: #e8651a;
    flex-shrink: 0;
    margin-top: .1rem;
}

/* ═══ FAQ ══════════════════════════════════════════════════ */
.ktk-faq {
    background: #111;
    padding: 5rem 0 6rem;
}

.ktk-faq__inner {
    max-width: 900px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.ktk-faq__header {
    text-align: center;
    margin-bottom: 3rem;
}

.ktk-faq__grid {
    display: flex;
    gap: .75rem;
    align-items: flex-start; /* ← ključno! svaka kolona raste neovisno */
}
.ktk-faq__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: .625rem;
    overflow: hidden;
    transition: border-color 220ms ease;
}

.faq-item[open] {
    border-color: rgba(232, 101, 26, .3);
}

.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    font-size: .88rem;
    font-weight: 700;
    color: #e8e8e8;
    line-height: 1.4;
    user-select: none;
}

.faq-item__q::-webkit-details-marker {
    display: none;
}

.faq-item__q:hover {
    color: #fff;
}

.faq-item__icon {
    width: 18px;
    height: 18px;
    color: #e8651a;
    flex-shrink: 0;
    transition: transform 280ms cubic-bezier(.16, 1, .3, 1);
}

.faq-item[open] .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__a {
    padding: .85rem 1.25rem 1.1rem;
    margin: 0;
    font-size: .83rem;
    color: rgba(232, 232, 232, .5);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

/* ═══ DOKUMENTI ══════════════════════════════════════════ */
.ktk-docs {
    background: #0d0d0d;
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.ktk-docs__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.ktk-docs__header {
    text-align: center;
    margin-bottom: 3rem;
}

.ktk-docs__sub {
    font-size: .9rem;
    color: rgba(232, 232, 232, .4);
    max-width: 560px;
    margin-inline: auto;
    margin-top: .5rem;
    line-height: 1.7;
}

.ktk-docs__grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ktk-docs__group-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(232, 232, 232, .35);
    margin-bottom: .85rem;
}

.ktk-docs__group-label svg {
    width: 15px;
    height: 15px;
    color: #e8651a;
    flex-shrink: 0;
}

.ktk-docs__cards {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.ktk-doc-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: .625rem;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
    position: relative;
    overflow: hidden;
}

.ktk-doc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8651a;
    transition: width 280ms ease;
}

.ktk-doc-card:hover {
    border-color: rgba(232, 101, 26, .35);
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .3);
}

.ktk-doc-card:hover::before {
    width: 100%;
}

.ktk-doc-card__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: .45rem;
    background: rgba(232, 101, 26, .1);
    border: 1px solid rgba(232, 101, 26, .2);
    color: #e8651a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ktk-doc-card__icon svg {
    width: 18px;
    height: 18px;
}

.ktk-doc-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
}

.ktk-doc-card__name {
    font-size: .88rem;
    font-weight: 700;
    color: #e8e8e8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ktk-doc-card__meta {
    font-size: .7rem;
    color: rgba(232, 232, 232, .3);
    font-weight: 600;
}

.ktk-doc-card__lang {
    flex-shrink: 0;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: #e8651a;
    background: rgba(232, 101, 26, .1);
    border: 1px solid rgba(232, 101, 26, .25);
    padding: .2rem .55rem;
    border-radius: 9999px;
}

.ktk-doc-card__lang--en {
    color: #60a5fa;
    background: rgba(96, 165, 250, .1);
    border-color: rgba(96, 165, 250, .25);
}

.ktk-doc-card__arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: rgba(232, 232, 232, .2);
    transition: color 200ms ease, transform 200ms ease;
}

.ktk-doc-card:hover .ktk-doc-card__arrow {
    color: #e8651a;
    transform: translate(2px, -2px);
}

/* ═══ HERO ════════════════════════════════════════════════ */
.uvj-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a03 60%, #0d0d0d 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.uvj-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 120%, rgba(232, 101, 26, .1) 0%, transparent 70%);
    pointer-events: none;
}

.uvj-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8651a 40%, transparent);
}

.uvj-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.uvj-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(232, 232, 232, .4);
    margin-bottom: 1.5rem;
}

.uvj-hero__breadcrumb a {
    color: #e8651a;
    text-decoration: none;
}

.uvj-hero__breadcrumb a:hover {
    color: #ff7a25;
}

.uvj-hero__breadcrumb svg {
    width: 14px;
    height: 14px;
}

.uvj-hero__title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: .04em;
    line-height: 1;
    color: #fff;
    margin-bottom: .75rem;
}

.uvj-hero__title span {
    color: #e8651a;
}

.uvj-hero__sub {
    font-size: .85rem;
    color: rgba(232, 232, 232, .4);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.uvj-hero__pdf {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #e8651a;
    text-decoration: none;
    border: 1px solid rgba(232, 101, 26, .35);
    border-radius: 9999px;
    padding: .55rem 1.25rem;
    transition: background 200ms ease, color 200ms ease;
}

.uvj-hero__pdf:hover {
    background: #e8651a;
    color: #fff;
}

/* ═══ LAYOUT ══════════════════════════════════════════════ */
.uvj-layout {
    background: #0d0d0d;
    padding: 4rem 0 6rem;
}

.uvj-layout__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 1.5rem;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ── Sidebar nav ─────────────────────────────────────────── */
.uvj-nav {
    position: sticky;
    top: 90px;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: .75rem;
    padding: 1.5rem;
}

.uvj-nav__title {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(232, 232, 232, .3);
    margin-bottom: 1rem;
}

.uvj-nav__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.uvj-nav__link {
    display: block;
    padding: .45rem .65rem;
    border-radius: .35rem;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(232, 232, 232, .4);
    text-decoration: none;
    transition: color 150ms ease, background 150ms ease;
}

.uvj-nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05);
}

.uvj-nav__link--active {
    color: #e8651a !important;
    background: rgba(232, 101, 26, .08) !important;
}

.uvj-nav__cta {
    display: block;
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    color: #fff;
    background: #e8651a;
    padding: .65rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(232, 101, 26, .3);
    transition: background 200ms ease;
}

.uvj-nav__cta:hover {
    background: #ff7a25;
}

/* ── Uvod ────────────────────────────────────────────────── */
.uvj-intro {
    background: rgba(232, 101, 26, .06);
    border: 1px solid rgba(232, 101, 26, .2);
    border-radius: .625rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.uvj-intro p {
    font-size: .9rem;
    color: rgba(232, 232, 232, .6);
    line-height: 1.7;
    margin: 0;
}

.uvj-intro strong {
    color: #e8e8e8;
}

/* ── Sekcije ─────────────────────────────────────────────── */
.uvj-section {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.uvj-section:last-of-type {
    border-bottom: none;
}

.uvj-section__header {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1.25rem;
}

.uvj-section__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: .5rem;
    background: rgba(232, 101, 26, .1);
    border: 1px solid rgba(232, 101, 26, .2);
    color: #e8651a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uvj-section__icon--danger {
    background: rgba(239, 68, 68, .1);
    border-color: rgba(239, 68, 68, .2);
    color: #f87171;
}

.uvj-section__icon svg {
    width: 18px;
    height: 18px;
}

.uvj-section__title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.5rem;
    letter-spacing: .06em;
    color: #fff;
    line-height: 1;
}

.uvj-section__body p {
    font-size: .9rem;
    color: rgba(232, 232, 232, .55);
    line-height: 1.75;
    margin-bottom: .85rem;
}

.uvj-section__body p:last-child {
    margin-bottom: 0;
}

.uvj-section__body strong {
    color: rgba(232, 232, 232, .85);
}

/* ── Listovi ─────────────────────────────────────────────── */
.uvj-list {
    list-style: none;
    padding: 0;
    margin: .75rem 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.uvj-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .87rem;
    color: rgba(232, 232, 232, .55);
    line-height: 1.6;
}

.uvj-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #e8651a;
    margin-top: .5rem;
}

.uvj-list strong {
    color: rgba(232, 232, 232, .85);
}

.uvj-list--danger li::before {
    background: #f87171;
}

.uvj-list--danger li {
    color: rgba(232, 232, 232, .5);
}

/* ── Callout boxovi ──────────────────────────────────────── */
.uvj-callout {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    border-radius: .5rem;
    padding: .9rem 1.1rem;
    margin-top: .85rem;
    font-size: .84rem;
    line-height: 1.6;
}

.uvj-callout svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: .1rem;
}

.uvj-callout span strong {
    font-weight: 700;
}

.uvj-callout--info {
    background: rgba(96, 165, 250, .08);
    border: 1px solid rgba(96, 165, 250, .2);
    color: rgba(147, 197, 253, .8);
}

.uvj-callout--info svg {
    color: #60a5fa;
}

.uvj-callout--warning {
    background: rgba(251, 191, 36, .07);
    border: 1px solid rgba(251, 191, 36, .2);
    color: rgba(253, 230, 138, .75);
}

.uvj-callout--warning svg {
    color: #fbbf24;
}

.uvj-callout--danger {
    background: rgba(239, 68, 68, .07);
    border: 1px solid rgba(239, 68, 68, .2);
    color: rgba(252, 165, 165, .75);
}

.uvj-callout--danger svg {
    color: #f87171;
}

/* ── Dokumenti CTA ───────────────────────────────────────── */
.uvj-docs-cta {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #161616;
    border: 1px solid rgba(232, 101, 26, .2);
    border-radius: .75rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.uvj-docs-cta__text {
    flex: 1;
    min-width: 200px;
}

.uvj-docs-cta__text h3 {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.3rem;
    letter-spacing: .06em;
    color: #fff;
    margin-bottom: .35rem;
}

.uvj-docs-cta__text p {
    font-size: .83rem;
    color: rgba(232, 232, 232, .4);
    line-height: 1.6;
}

.uvj-docs-cta__btns {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    min-width: 200px;
}

.uvj-docs-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 9999px;
    padding: .6rem 1.25rem;
    transition: background 200ms ease, transform 200ms ease;
}

.uvj-docs-cta__btn {
    color: #fff;
    background: #e8651a;
    box-shadow: 0 4px 14px rgba(232, 101, 26, .3);
}

.uvj-docs-cta__btn:hover {
    background: #ff7a25;
    transform: translateY(-1px);
}

.uvj-docs-cta__btn--secondary {
    color: rgba(232, 232, 232, .6);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: none;
}

.uvj-docs-cta__btn--secondary:hover {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   RECENZIJE
═══════════════════════════════════════════════════════════ */
.reviews {
    padding: 6rem 0;
    background: #0e0e0e;
}

.reviews__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.reviews__header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews__rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
}

.reviews__stars {
    display: flex;
    gap: 2px;
    color: #e8651a;
}

.reviews__rating-score {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.reviews__rating-count {
    color: #888;
    font-size: .9rem;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.reviews__card {
    background: #161616;
    border: 1px solid rgba(232, 101, 26, .12);
    border-radius: .75rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 260ms ease, transform 260ms ease;
}

.reviews__card:hover {
    border-color: rgba(232, 101, 26, .4);
    transform: translateY(-4px);
}

.reviews__card-stars {
    display: flex;
    gap: 2px;
    color: #e8651a;
}

.reviews__card-text {
    color: #ccc;
    font-size: .95rem;
    line-height: 1.7;
    flex: 1;
}

.reviews__card-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.reviews__card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8651a, #c4520f);
    color: #fff;
    font-weight: 800;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviews__card-name {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
}

.reviews__card-date {
    display: block;
    color: #666;
    font-size: .8rem;
}

.reviews__cta {
    text-align: center;
}

.reviews__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 2rem;
    border: 1px solid rgba(232, 101, 26, .4);
    border-radius: 2rem;
    color: #e8651a;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    transition: background 260ms ease, border-color 260ms ease, color 260ms ease;
}

.reviews__cta-btn:hover {
    background: #e8651a;
    border-color: #e8651a;
    color: #fff;
}

@media (max-width: 768px) {
    .reviews__grid {
        grid-template-columns: 1fr;
    }
}

/* ═══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 900px) {
    .uvj-layout__inner {
        grid-template-columns: 1fr;
    }

    .uvj-nav {
        position: static;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 1rem;
        align-items: start;
    }

    .uvj-nav__list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: .35rem;
        margin-bottom: 0;
    }

    .uvj-nav__cta {
        align-self: end;
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .uvj-nav {
        grid-template-columns: 1fr;
    }

    .uvj-docs-cta {
        flex-direction: column;
        gap: 1.25rem;
    }

    .uvj-docs-cta__btns {
        width: 100%;
    }
}

@media (min-width: 720px) {
    .ktk-docs__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .ktk-doc-card:hover {
        transform: translateY(-3px) translateX(0);
    }
}

@media (max-width: 480px) {
    .ktk-doc-card__name {
        white-space: normal;
    }
}

/* ═══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ktk-cards__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .ktk-main__inner {
        grid-template-columns: 1fr;
    }

    .ktk-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .ktk-map {
        grid-column: span 2;
    }
}

@media (max-width: 720px) {
    .ktk-cards__inner {
        grid-template-columns: 1fr 1fr;
    }

    .ktk-faq__grid {
        flex-direction: column;
    }
    .ktk-faq__col {
        flex-direction: row;         /* ← itemi idu jedan pored drugog */
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1 1 100%;              /* ← svaki item zauzima punu širinu */
    }

    .ktk-form__row--2 {
        grid-template-columns: 1fr;
    }

    .ktk-side {
        grid-template-columns: 1fr;
    }

    .ktk-map {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .ktk-cards__inner {
        grid-template-columns: 1fr;
    }

    .ktk-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ktk-form__submit {
        justify-content: center;
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ═══ RESPONSIVE ═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

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

    .gallery__item--tall {
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
        gap: .5rem;
    }

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

    .lightbox__frame {
        padding-inline: 3.5rem;
    }

    .lightbox__nav {
        width: 40px;
        height: 40px;
    }

    .lightbox__nav--prev {
        left: .5rem;
    }

    .lightbox__nav--next {
        right: .5rem;
    }
}

@media (max-width: 400px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }
}

/* ═══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 900px) {
    .about-who__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-who__text .section-pretitle {
        justify-content: center;
    }

    .about-who__text .section-title {
        text-align: center;
    }

    .about-process__cols {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-separator {
        flex-direction: row;
        padding-top: 0;
    }

    .process-separator__icon {
        display: flex;
    }

    .process-separator__line {
        flex: 1;
        width: auto;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(232, 101, 26, .3), transparent);
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-hero__stats {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        padding: 1.25rem;
    }

    .about-hero__stat {
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
    }

    .about-hero__stat-divider {
        width: 100%;
        height: 1px;
        background: rgba(232, 101, 26, .15);
    }

    .about-cta__actions {
        flex-direction: column;
    }

    .about-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .pricing__vehicles-wrap {
        grid-template-columns: 1fr;
    }

    .veh-card {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .veh-card__coming {
        margin-top: 0;
    }
}

@media (max-width: 680px) {
    .veh-diagram {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: unset;
    }

    .veh-diagram__col--left,
    .veh-diagram__col--right {
        align-items: stretch;
        flex-direction: row;
        flex-wrap: wrap;
        gap: .75rem;
    }

    .veh-diagram__col--left {
        order: 2;
    }

    .veh-diagram__col--right {
        order: 3;
    }

    .veh-diagram__center {
        order: 1;
    }

    .veh-diagram__connector {
        display: none;
    }

    .veh-diagram__spec {
        background: rgba(232, 101, 26, .06);
        border: 1px solid rgba(232, 101, 26, .15);
        border-radius: .5rem;
        padding: .6rem .9rem;
    }

    .veh-diagram__spec-body--right {
        text-align: left;
    }

    .veh-diagram__img-wrap {
        width: 220px;
        margin: 0 auto;
    }

    .veh-diagram-wrap {
        padding: 1.25rem;
    }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .pricing__extras {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .pricing__main-grid {
        grid-template-columns: 1fr;
    }

    .pricing__vehicles {
        grid-template-columns: 1fr;
    }

    .pricing__highlight-bar {
        flex-direction: column;
        gap: 1.25rem;
        align-items: flex-start;
    }

    .pricing__highlight-divider {
        width: 100%;
        height: 1px;
    }

    .pricing__conditions {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing__wa-cta {
        width: 100%;
        justify-content: center;
    }
}

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

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer__col--nav {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: start;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__col--nav {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 640px) {
    .steps {
        padding: 4rem 0;
    }

    .steps__header {
        margin-bottom: 3rem;
    }

    .steps__line {
        left: 23px;
    }

    .steps__step {
        gap: 1.25rem;
        padding-bottom: 2rem;
    }

    .steps__bubble {
        width: 48px;
        height: 48px;
    }

    .steps__bubble-icon svg {
        width: 18px;
        height: 18px;
    }

    .steps__content {
        padding: 1.25rem;
    }

    .steps__step-title {
        font-size: 1.2rem;
    }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .why {
        padding: 4rem 0;
    }

    .why__header {
        margin-bottom: 2.5rem;
    }

    .why__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why__card {
        padding: 1.5rem 1.25rem;
    }

    .why__card-icon {
        width: 44px;
        height: 44px;
    }

    .why__card-icon svg {
        width: 20px;
        height: 20px;
    }

    .why__card-title {
        font-size: 1.2rem;
    }

    .why__card-number {
        font-size: 4rem;
        bottom: -6px;
        right: 12px;
    }
}


/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__hamburger {
        display: flex;
        align-self: center;
    }

    .nav__mobile {
        display: none;
        /* JS postavlja display:flex inline */
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 250ms ease, transform 500ms cubic-bezier(.16, 1, .3, 1);
    }

    .nav__mobile.open {
        opacity: 1;
        transform: translateY(0);
    }

    .nav__inner {
        height: 70px;
        min-height: unset;
        padding-inline: var(--space-4);
        padding-block: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav__brand {
        height: 70px;
        display: flex;
        align-items: center;
        gap: .65rem;
    }

    .nav__logo,
    .nav__brand img {
        width: 44px;
        height: 44px;
        display: block;
        object-fit: contain;
        flex-shrink: 0;
    }

    .nav__name {
        font-size: clamp(1.1rem, 4.2vw, 1.35rem);
        line-height: 1;
    }

    .nav__name span {
        font-size: .65rem;
        letter-spacing: .15em;
        line-height: 1.1;
        margin-top: .1rem;
    }

    .hero__badges {
        text-align: center;
        justify-content: center;
    }

    .hero__badges .hero__badge {
        font-size: 10px;
    }
}

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        padding: 3.5rem 1.25rem 3rem;
        gap: 2.5rem;
    }

    .hero {
        background-attachment: scroll;
        min-height: auto;
    }

    .hero__title {
        font-size: clamp(2.6rem, 8vw, 4rem);
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__btn {
        justify-content: center;
    }
}


/* ═══ LANGUAGE SWITCHER ══════════════════════════════════ */
.lang-switch {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 9999px;
    padding: 3px;
    gap: 2px;
    flex-shrink: 0;
}

.lang-switch__btn {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-decoration: none;
    padding: .3rem .7rem;
    border-radius: 9999px;
    color: rgba(232, 232, 232, .4);
    transition: color 200ms ease, background 200ms ease;
}

.lang-switch__btn:hover {
    color: rgba(232, 232, 232, .8);
}

.lang-switch__btn--active {
    background: #e8651a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(232, 101, 26, .35);
}

@media (max-width: 768px) {
    .lang-switch {
        margin-right: .5rem;
    }
}

/* Sakrij mobilni lang-switch na desktopu */
.lang-switch--mobile {
    display: none;
}

/* Prikaži ga na mobilnom pokraj hamburgera */
@media (max-width: 768px) {
    .lang-switch--mobile {
        display: flex;
        margin-left: auto;
        /* ← gura sve desno */
        margin-right: -10px;
        /* ← mali razmak od hamburgera */
    }

    /* Sakrij onaj u ul listi na mobilnom */
    .nav__links .lang-switch {
        display: none;
    }
}