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

:root {
    --black:   #0d0d0d;
    --black2:  #181818;
    --black3:  #222222;
    --gold:    #c9a227;
    --gold2:   #e0b840;
    --gold3:   #f5d060;
    --white:   #ffffff;
    --gray:    #999999;
    --lightbg: #f4f1eb;
    --nav-height: 72px;
    --nav-height-mobile: 64px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
}

/* ─── NAVIGATION ─────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.96);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.nav-logo img {
    display: block;
    height: 44px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color .2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 700 !important;
}

.nav-cta:hover { background: var(--gold2); color: var(--black) !important; }

.nav-links a.active { color: var(--gold); }

/* ─── HAMBURGER ──────────────────────────────── */
.nav-actions {
    display: none;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-phone-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
    transform-origin: center;
}

nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ─── FOCUS / TOUCH ──────────────────────────── */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

.btn-primary:active,
.btn-outline:active,
.btn-primary-inline:active,
.nav-cta:active {
    transform: translateY(0);
    opacity: 0.82;
    box-shadow: none;
}

/* ─── HERO ───────────────────────────────────── */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/banner.webp');
    background-image: image-set(
        url('../images/banner.avif') type('image/avif'),
        url('../images/banner.webp') type('image/webp')
    );
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(201,162,39,0.08) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 48px) 24px 80px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: var(--gold2);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text h1 span { color: var(--gold); }

.hero-text p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* HERO FORM */
.hero-form {
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    padding: 36px 32px;
}

.hero-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.hero-form p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-group select,
.form-group input {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    padding: 11px 14px;
    outline: none;
    transition: border-color .2s;
}

.form-group select:focus,
.form-group input:focus {
    border-color: var(--gold);
}

.form-group input[readonly] {
    border-color: rgba(201, 162, 39, 0.28);
    background: rgba(201, 162, 39, 0.08);
    color: rgba(255,255,255,0.78);
    cursor: not-allowed;
}

.form-group select option { background: #1a1a1a; }

.form-alert {
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 18px;
    padding: 11px 13px;
}

.form-alert-error {
    background: rgba(165, 45, 45, 0.16);
    border: 1px solid rgba(255, 120, 120, 0.26);
    color: rgba(255,255,255,0.82);
}

.honeypot-field {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

.cf-turnstile {
    margin-bottom: 12px;
}

.btn-primary {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    padding: 14px;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    margin-top: 8px;
    text-align: center;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

/* ─── SECTION SHARED ─────────────────────────── */
section { padding: 90px 24px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title span { color: var(--gold); }

.section-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 580px;
    line-height: 1.75;
}

/* ─── UVOD ───────────────────────────────────── */
#uvod {
    background: var(--black2);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

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

.uvod-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

.uvod-right {
    position: relative;
}

.uvod-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.uvod-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.uvod-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(201, 162, 39, 0.25);
    border-radius: 12px;
    pointer-events: none;
}

.uvod-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    color: var(--black);
    border-radius: 10px;
    padding: 18px 22px;
    text-align: center;
}

.uvod-badge strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.uvod-badge span {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.8;
}

/* ─── VOZILA ─────────────────────────────────── */
#vozila { background: var(--black); }

.vozila-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
}

.vozila-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vozilo-card {
    background: var(--black2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    position: relative;
}

.vozilo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

.vozilo-card.featured {
    border-color: rgba(201, 162, 39, 0.4);
    grid-column: 2;
    grid-row: 1;
}

.vozilo-badge-novo {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.vozilo-badge-popular {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.vozilo-media {
    width: 100%;
    height: 210px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    gap: 12px;
}

.vozilo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: transparent;
    padding: 12px;
    display: block;
    transform: scale(var(--vehicle-image-scale, 1));
    transform-origin: center;
}

.vozilo-media.media-fit-cover .vozilo-img {
    object-fit: cover;
    padding: 0;
}

.vozilo-media.media-fit-contain-tight .vozilo-img {
    object-fit: contain;
    padding: 4px;
}

.vozilo-media .car-icon {
    font-size: 56px;
    opacity: 0.35;
}

.vozilo-media span {
    font-size: 12px;
    color: rgba(13,13,13,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vozilo-body {
    padding: 24px;
}

.vozilo-model {
    font-size: 11px;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.vozilo-naziv {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.vozilo-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.spec-icon { font-size: 14px; }

.vozilo-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 20px;
}

.vozilo-cena-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.vozilo-cena-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.vozilo-cena {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.vozilo-cena small {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
}

.vozilo-cena-note {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
}

.btn-outline {
    display: inline-block;
    border: 1px solid rgba(201, 162, 39, 0.5);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* ─── RENT A CAR CENOVNIK ───────────────────── */
.rental-pricing-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 34px;
}

.rental-pricing-head .section-desc {
    max-width: 480px;
}

.rental-price-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

.rental-price-table-wrap:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.rental-price-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
}

.rental-price-table th,
.rental-price-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
    vertical-align: middle;
}

.rental-price-table thead th {
    background: rgba(201, 162, 39, 0.13);
    color: rgba(255, 255, 255, 0.72);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
}

.rental-price-table tbody tr:last-child th,
.rental-price-table tbody tr:last-child td {
    border-bottom: 0;
}

.rental-price-table tbody tr:hover {
    background: rgba(201, 162, 39, 0.045);
}

.rental-price-table tbody th {
    min-width: 230px;
    font-weight: 400;
}

.rental-price-table tbody th strong,
.rental-price-table tbody td > span,
.rental-price-table tbody td > small {
    display: block;
}

.rental-price-table tbody th strong {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.35;
}

.rental-vehicle-brand {
    display: block;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.rental-price-table tbody td > span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.rental-price-table tbody td > small,
.rental-price-cell small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    margin-top: 3px;
}

.rental-price-cell {
    min-width: 110px;
    white-space: nowrap;
}

.rental-price-cell strong {
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
}

.rental-pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    line-height: 1.6;
}

.rental-pricing-note span {
    display: grid;
    place-items: center;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(201, 162, 39, 0.45);
    border-radius: 50%;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 13px;
    font-weight: 700;
}

.rental-pricing-note p {
    margin: 1px 0 0;
}

/* ─── CENOVNIK NA STRANICI VOZILA ──────────── */
.vehicle-rate-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 30px;
}

.vehicle-rate-head > div {
    max-width: 760px;
}

.vehicle-rate-head .section-desc {
    margin-top: 12px;
}

.vehicle-rate-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.vehicle-rate-card {
    padding: 22px;
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
}

.vehicle-rate-card > span,
.vehicle-rate-card > small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.vehicle-rate-card strong {
    display: block;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.1;
    margin: 10px 0 7px;
}

.vehicle-rate-card strong small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    font-weight: 600;
}

/* donji red vozila */
.vozila-row2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 28px;
}

/* ─── USKORO CARD ───────────────────────────── */
.vozilo-uskoro {
    border: 2px dashed rgba(201, 162, 39, 0.25) !important;
    background: rgba(201, 162, 39, 0.03) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vozilo-uskoro:hover {
    border-color: rgba(201, 162, 39, 0.45) !important;
    transform: none !important;
    box-shadow: none !important;
    cursor: default;
}

.vozilo-uskoro-inner {
    text-align: center;
    padding: 40px 24px;
}

.uskoro-icon {
    font-size: 52px;
    opacity: 0.2;
    margin-bottom: 16px;
}

.vozilo-uskoro-inner h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.vozilo-uskoro-inner p {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201, 162, 39, 0.45);
}

/* ─── PREDNOSTI ──────────────────────────────── */
#prednosti {
    background: var(--black2);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.prednosti-header { text-align: center; margin-bottom: 56px; }
.prednosti-header .section-desc { margin: 0 auto; }

.prednosti-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.prednost-card {
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color .2s, transform .2s;
}

.prednost-card:hover {
    border-color: rgba(201, 162, 39, 0.35);
    transform: translateY(-4px);
}

.prednost-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.prednost-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.prednost-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

/* ─── FAQ ────────────────────────────────────── */
#faq { background: var(--black); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 56px;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-q {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.faq-q::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.faq-a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    padding-left: 40px;
}

.faq-cta-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.04) 100%);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 14px;
    padding: 48px 40px;
    text-align: center;
    margin-top: 64px;
}

.faq-cta-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

.faq-cta-box h3 span { color: var(--gold); }

.faq-cta-box p {
    color: rgba(255,255,255,0.55);
    margin-bottom: 28px;
    font-size: 15px;
}

.btn-primary-inline {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    padding: 14px 36px;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
}

.btn-primary-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
    background: #080808;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    padding: 60px 24px 28px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand img {
    height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color .2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-col .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-icon {
    font-size: 16px;
    opacity: 0.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

.contact-text a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.contact-text a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.instagram-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 6px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
}

.instagram-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

.footer-copy span { color: var(--gold); }

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color .2s;
}

.footer-legal a:hover { color: var(--gold); }

/* ─── GOLD DIVIDER ───────────────────────────── */
.gold-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold2) 70%, transparent 100%);
    opacity: 0.4;
}

/* ─── HOMEPAGE ───────────────────────────────── */
.home-hero .hero-text p {
    max-width: 620px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-actions .btn-primary-inline,
.hero-actions .btn-outline {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.home-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
}

.home-services {
    background: var(--black2);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.home-service-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 28px 24px;
    text-decoration: none;
    transition: transform .2s, border-color .2s, background .2s;
}

.home-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.35);
    background: #252525;
}

.home-service-card span {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.home-service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 14px;
}

.home-service-card p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 26px;
}

.home-service-card strong {
    margin-top: auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold2);
}

.home-audience {
    background: var(--black);
}

.audience-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: center;
}

.audience-panels {
    display: grid;
    gap: 18px;
}

.audience-panel {
    background: var(--black2);
    border: 1px solid rgba(255,255,255,0.07);
    border-left: 3px solid rgba(201, 162, 39, 0.65);
    border-radius: 10px;
    padding: 24px 26px;
}

.audience-panel h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.audience-panel p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
}

.home-process {
    background: var(--black2);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-step {
    min-height: 220px;
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 28px 24px;
}

.process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-radius: 8px;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 22px;
}

.process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

.home-faq {
    background: var(--black);
}

.home-faq-aside {
    background: var(--black2);
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: 12px;
    padding: 36px 32px;
    align-self: start;
}

.home-faq-aside h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 14px;
}

.home-faq-aside p {
    color: rgba(255,255,255,0.58);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 26px;
}

/* ─── INTERNAL PAGES ─────────────────────────── */
#hero.page-hero {
    min-height: auto;
    align-items: stretch;
}

.page-hero .hero-content {
    grid-template-columns: minmax(0, 820px);
    justify-content: start;
    padding-top: 150px;
    padding-bottom: 72px;
}

.page-hero .hero-text h1 {
    font-size: clamp(36px, 4.6vw, 58px);
}

.vehicle-detail {
    background: radial-gradient(circle at 18% 15%, rgba(201, 162, 39, 0.12), transparent 34%), var(--black);
    padding-top: 132px;
    padding-bottom: 76px;
}

.vehicle-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
    gap: 58px;
    align-items: center;
}

.vehicle-detail-media {
    aspect-ratio: 16 / 10;
    background: #ffffff;
    border: 1px solid rgba(201, 162, 39, 0.24);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 360px;
    box-shadow: 0 26px 70px rgba(0,0,0,0.34);
}

.vehicle-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 18px;
    transform: scale(var(--vehicle-image-scale, 1));
    transform-origin: center;
}

.vehicle-detail-media.media-fit-cover img {
    padding: 0;
}

.vehicle-detail-media.media-fit-contain-tight img {
    padding: 8px;
}

.vehicle-detail-media .car-icon {
    color: rgba(13,13,13,0.28);
    font-size: 64px;
}

.vehicle-detail-media span {
    color: rgba(13,13,13,0.48);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vehicle-detail-info h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 4.8vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    margin: 12px 0 22px;
}

.vehicle-detail-info h1 span {
    color: var(--gold);
}

.vehicle-detail-lead {
    color: rgba(255,255,255,0.68);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 620px;
}

.vehicle-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.vehicle-spec-grid div {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 14px 15px;
}

.vehicle-spec-grid span,
.vehicle-detail-price span,
.vehicle-detail-price small {
    color: rgba(255,255,255,0.48);
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.vehicle-spec-grid strong {
    color: var(--white);
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.35;
    margin-top: 5px;
}

.vehicle-detail-price {
    border-top: 1px solid rgba(201, 162, 39, 0.22);
    border-bottom: 1px solid rgba(201, 162, 39, 0.22);
    margin: 0 0 26px;
    padding: 18px 0;
}

.vehicle-detail-price strong {
    color: var(--gold);
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    line-height: 1.1;
    margin: 6px 0 8px;
}

.vehicle-detail-price strong small {
    color: rgba(255,255,255,0.48);
    display: inline;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

.vehicle-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vehicle-about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.page-kicker-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 34px;
    list-style: none;
}

.page-kicker-list li {
    border: 1px solid rgba(201, 162, 39, 0.28);
    background: rgba(201, 162, 39, 0.08);
    color: rgba(255,255,255,0.72);
    border-radius: 6px;
    padding: 8px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.page-band-dark {
    background: var(--black2);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.page-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 64px;
    align-items: center;
}

.page-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.page-feature {
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 28px 24px;
}

.page-feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-feature p {
    color: rgba(255,255,255,0.56);
    font-size: 14px;
    line-height: 1.7;
}

.page-list {
    display: grid;
    gap: 14px;
    list-style: none;
}

.page-list li {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 16px 18px;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.65;
}

.page-list li strong {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: start;
}

.contact-card {
    background: var(--black2);
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: 12px;
    padding: 32px;
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 18px;
}

.legal-content {
    max-width: 860px;
}

.legal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin: 36px 0 12px;
}

.legal-content p,
.legal-content li {
    color: rgba(255,255,255,0.62);
    font-size: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0 0 18px;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; max-width: 720px; }
    .hero-form { max-width: 480px; }
    .uvod-grid { grid-template-columns: 1fr; gap: 48px; }
    .uvod-right { max-width: 560px; }
    .uvod-badge { right: 0; }
    .prednosti-grid { grid-template-columns: repeat(2, 1fr); }
    .vozila-grid { grid-template-columns: repeat(2, 1fr); }
    .vozilo-card.featured { grid-column: auto; }
    .home-section-head,
    .audience-grid { grid-template-columns: 1fr; gap: 36px; }
    .home-services-grid,
    .process-grid,
    .page-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .vehicle-detail-grid,
    .vehicle-about-grid { grid-template-columns: 1fr; gap: 36px; }
    .vehicle-detail-media { min-height: 300px; }
    .vehicle-rate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-hero .hero-content,
    .page-split,
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-inner {
        height: var(--nav-height-mobile);
        padding: 0 16px;
        flex-wrap: nowrap;
    }
    .nav-logo img { height: 38px; }
    .nav-actions { display: flex; }
    .nav-links {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(201, 162, 39, 0.2);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        padding: 0;
    }
    nav.nav-open .nav-links { max-height: 420px; }
    .nav-links li { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a {
        display: block;
        padding: 16px 24px;
        font-size: 13px;
        letter-spacing: 0.8px;
        white-space: normal;
    }
    .nav-links a.active {
        color: var(--gold);
        border-left: 3px solid var(--gold);
        padding-left: 21px;
    }
    .nav-cta-item { display: none; }
    .hero-content { padding-top: calc(var(--nav-height-mobile) + 56px); }
    .vehicle-detail {
        padding-top: calc(var(--nav-height-mobile) + 56px);
        padding-bottom: 56px;
    }
    .vehicle-detail-grid { gap: 28px; }
    .vehicle-detail-media {
        aspect-ratio: 4 / 3;
        min-height: 220px;
    }
    .vehicle-detail-info h1 { font-size: clamp(34px, 12vw, 46px); }
    .vehicle-spec-grid { grid-template-columns: 1fr 1fr; }
    .vehicle-detail-actions .btn-primary-inline,
    .vehicle-detail-actions .btn-outline {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .home-form-row { grid-template-columns: 1fr; gap: 0; }
    .home-services-grid,
    .process-grid,
    .page-feature-grid { grid-template-columns: 1fr; }
    .home-service-card,
    .process-step { min-height: auto; }
    .vozila-grid { grid-template-columns: 1fr; }
    .vozila-row2 { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; gap: 0; }
    .prednosti-grid { grid-template-columns: 1fr 1fr; }
    .vozila-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .vehicle-rate-head { flex-direction: column; align-items: flex-start; gap: 20px; }
    .rental-pricing-head { flex-direction: column; align-items: flex-start; gap: 14px; }
    .rental-price-table { min-width: 800px; }
    .rental-price-table th,
    .rental-price-table td { padding: 15px 16px; }
    .rental-price-table thead th:first-child,
    .rental-price-table tbody th {
        position: sticky;
        left: 0;
        z-index: 1;
        background: #101010;
        box-shadow: 12px 0 18px rgba(0, 0, 0, 0.18);
    }
    .rental-price-table thead th:first-child {
        z-index: 2;
        background: #2b281d;
    }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
    .vehicle-spec-grid { grid-template-columns: 1fr; }
    .prednosti-grid { grid-template-columns: 1fr; }
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}
