*, *::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;
}

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 img {
    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; }

/* ─── 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.png');
    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: 120px 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 select option { background: #1a1a1a; }

.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-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    background: var(--black3);
    display: block;
}

.vozilo-img-placeholder {
    width: 100%;
    height: 210px;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.vozilo-img-placeholder .car-icon {
    font-size: 56px;
    opacity: 0.3;
}

.vozilo-img-placeholder span {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    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);
}

/* 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-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    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;
}

/* ─── 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; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav { display: none; }
    .hero-stats { gap: 24px; }
    .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; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
