/* ============================================
   ŠPEDITERSKE USLUGE — Stilovi
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1B3A5C;
    --primary-light: #2A5580;
    --primary-dark: #0F2540;
    --accent: #F57C20;
    --accent-hover: #E06A10;
    --bg: #F5F7FA;
    --bg-white: #FFFFFF;
    --text: #1A1A2E;
    --text-light: #5A6275;
    --text-muted: #8892A4;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 124, 32, 0.35);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn--white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn--white:hover {
    background: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- Header / Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.nav__logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.nav__list {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__cta {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.nav__toggle,
.nav__close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    padding: 4px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #080E1A;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(175deg, rgba(8,14,26,0.88) 0%, rgba(15,37,64,0.82) 40%, rgba(8,14,26,0.9) 100%),
        url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920&q=80') center/cover no-repeat;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 85%, rgba(245,124,32,0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 15%, rgba(100,180,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(245,124,32,0.04) 0%, transparent 60%);
    z-index: 2;
}

/* --- Hero Scene (animated background) --- */
.hero__scene {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero__worldmap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1100px;
    opacity: 0.6;
}

/* Route dash animation */
.hero__route--sea {
    stroke-dasharray: 8 6;
    animation: dashMove 20s linear infinite;
}

.hero__route--air {
    stroke-dasharray: 4 8;
    animation: dashMove 15s linear infinite reverse;
}

@keyframes dashMove {
    to { stroke-dashoffset: -200; }
}

/* Location dot pulse */
.hero__dot--pulse {
    animation: dotPulse 2s ease-in-out infinite;
}

.hero__dot--ring {
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; r: 6; }
    50% { opacity: 0.6; r: 8; }
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.4; r: 12; }
    50% { opacity: 0.1; r: 20; }
}

/* (Wireframe floating elements removed for cleaner look) */

/* Particles */
.hero__particles {
    position: absolute;
    inset: 0;
}

.hero__particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: rgba(245,124,32,0.5);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite var(--delay);
    box-shadow: 0 0 6px rgba(245,124,32,0.3);
}

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    20% { opacity: 1; }
    80% { opacity: 1; }
    50% { transform: translateY(-30px) scale(1.2); }
    100% { opacity: 0; transform: translateY(-60px) scale(0.5); }
}

/* Glass card effect for stats */
.glass-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px 24px;
}

/* Route icons (plane & ship on map) */
.hero__route-plane,
.hero__route-ship {
    filter: drop-shadow(0 0 6px rgba(100,200,255,0.4));
}

.hero__route-ship {
    filter: drop-shadow(0 0 6px rgba(245,124,32,0.4));
}

/* --- Hero Content --- */
.hero__content {
    position: relative;
    z-index: 5;
    padding: 120px 24px 80px;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(245,124,32,0.1);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(245,124,32,0.2);
    backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero__title--accent {
    color: var(--accent);
    text-shadow: 0 0 40px rgba(245,124,32,0.3);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    font-weight: 400;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Glowing CTA button */
.btn--glow {
    position: relative;
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(245,124,32,0.3); }
    50% { box-shadow: 0 0 40px rgba(245,124,32,0.5), 0 0 60px rgba(245,124,32,0.2); }
}

.hero__stats {
    display: flex;
    gap: 16px;
    padding-top: 40px;
}

.hero__stat {
    position: relative;
}

.hero__stat-number {
    display: inline;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.hero__stat-suffix {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
}

.hero__stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(245,124,32,0.1);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.section__desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Usluge --- */
.usluge {
    background: var(--bg-white);
}

.usluge__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.usluga-card {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.usluga-card:hover {
    background: var(--bg-white);
    border-color: var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.usluga-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,124,32,0.1);
    border-radius: var(--radius-sm);
    color: var(--accent);
    margin-bottom: 20px;
}

.usluga-card__icon svg {
    width: 32px;
    height: 32px;
}

.usluga-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.usluga-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.usluga-card--highlight {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, #FFF7F0 0%, #FFFFFF 100%);
    position: relative;
}

.usluga-card--highlight::before {
    content: "NOVO";
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* --- Kako radimo --- */
.kako-radimo {
    background: var(--bg);
}

.koraci {
    max-width: 700px;
    margin: 0 auto;
}

.korak {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
}

.korak__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}

.korak__content {
    flex: 1;
}

.korak__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.korak__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.korak__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    color: var(--primary);
    opacity: 0.15;
}

.korak__icon svg {
    width: 100%;
    height: 100%;
}

.korak__connector {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.korak__connector svg {
    width: 24px;
    height: 48px;
}

/* --- Prednosti --- */
.prednosti {
    background: var(--bg-white);
}

.prednosti__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.prednost-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.prednost-card:hover {
    background: var(--bg);
    transform: translateY(-4px);
}

.prednost-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--accent);
}

.prednost-card__icon svg {
    width: 100%;
    height: 100%;
}

.prednost-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.prednost-card__desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(245,124,32,0.1);
    border-radius: 50%;
}

.cta-banner__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner__desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* --- Kontakt --- */
.kontakt {
    background: var(--bg);
}

.kontakt__wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.kontakt__form {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form__group {
    margin-bottom: 20px;
}

.form__row .form__group {
    margin-bottom: 0;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.required {
    color: var(--accent);
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form__input::placeholder {
    color: var(--text-muted);
}

.form__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245,124,32,0.1);
    background: var(--bg-white);
}

.form__input.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.form__error {
    display: block;
    font-size: 0.78rem;
    color: #e53e3e;
    margin-top: 4px;
    min-height: 18px;
}

.form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235A6275' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Upload area */
.form__upload {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
}

.form__upload:hover,
.form__upload.dragover {
    border-color: var(--accent);
    background: rgba(245,124,32,0.03);
}

.form__file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.form__upload-icon {
    width: 40px;
    height: 40px;
    color: var(--text-muted);
    margin: 0 auto 12px;
}

.form__upload-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.form__upload-link {
    color: var(--accent);
    font-weight: 600;
}

.form__upload-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.form__file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.file-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.file-item__remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0;
    font-size: 1.1rem;
    line-height: 1;
}

.file-item__remove:hover {
    color: #e53e3e;
}

/* Submit button spinner */
.spinner {
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form status */
.form__status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.form__status.success {
    display: block;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form__status.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Kontakt info */
.kontakt__info-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 36px;
    color: #fff;
}

.kontakt__info-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.kontakt__info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.kontakt__info-item:last-child {
    margin-bottom: 0;
}

.kontakt__info-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.kontakt__info-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kontakt__info-item p {
    font-size: 0.95rem;
}

/* --- Za špedtiere (accordion) --- */
.spediteri-section {
    background: var(--bg);
}

.spediteri {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1B3A5C 0%, #0F2540 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(27,58,92,0.3);
}

.spediteri__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    cursor: pointer;
    transition: background 0.3s;
    user-select: none;
}
.spediteri__header:hover {
    background: rgba(255,255,255,0.03);
}

.spediteri__header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.spediteri__badge {
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.spediteri__header-text h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}
.spediteri__header-text p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.spediteri__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    flex-shrink: 0;
}
.spediteri__arrow svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}
.spediteri.open .spediteri__arrow svg {
    transform: rotate(180deg);
}

.spediteri__body {
    max-height: none;
}

.spediteri__content {
    padding: 0 40px 40px;
}

.spediteri__intro {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}

.spediteri__benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.spediteri__benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px;
}
.spediteri__benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.spediteri__benefit-icon svg {
    width: 18px;
    height: 18px;
}
.spediteri__benefit h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}
.spediteri__benefit p {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.5;
}

.spediteri__requirements {
    background: rgba(245,124,32,0.1);
    border: 1px solid rgba(245,124,32,0.25);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 28px;
}
.spediteri__requirements h4 {
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}
.spediteri__requirements ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.spediteri__requirements li {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.spediteri__requirements li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.spediteri__cta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.spediteri__cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.spediteri__cta-primary {
    background: var(--accent);
    color: #fff;
}
.spediteri__cta-primary:hover {
    background: #E06A10;
    transform: translateY(-2px);
}
.spediteri__cta-secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}
.spediteri__cta-secondary:hover {
    background: rgba(255,255,255,0.12);
}

@media (max-width: 768px) {
    .spediteri__header { padding: 24px 20px; flex-wrap: wrap; gap: 12px; }
    .spediteri__content { padding: 0 20px 28px; }
    .spediteri__benefits { grid-template-columns: 1fr; }
    .spediteri__requirements ul { grid-template-columns: 1fr; }
    .spediteri__header-text h2 { font-size: 18px; }
    .spediteri__cta { flex-direction: column; }
    .spediteri__cta a { width: 100%; justify-content: center; }
}

/* --- Footer --- */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer__logo .nav__logo-icon {
    width: 36px;
    height: 36px;
}

.footer__desc {
    font-size: 0.88rem;
    line-height: 1.7;
    opacity: 0.7;
}

.footer__links h4,
.footer__contact h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer__links ul li {
    margin-bottom: 10px;
}

.footer__links ul li a {
    font-size: 0.88rem;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.footer__links ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer__contact p {
    font-size: 0.88rem;
    margin-bottom: 8px;
    opacity: 0.7;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    opacity: 0.5;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.usluga-card,
.korak,
.prednost-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.usluga-card.visible,
.korak.visible,
.prednost-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger */
.usluga-card:nth-child(2),
.prednost-card:nth-child(2) { transition-delay: 0.1s; }
.usluga-card:nth-child(3),
.prednost-card:nth-child(3) { transition-delay: 0.2s; }
.usluga-card:nth-child(4),
.prednost-card:nth-child(4) { transition-delay: 0.3s; }
.usluga-card:nth-child(5) { transition-delay: 0.4s; }
.usluga-card:nth-child(6) { transition-delay: 0.5s; }

.korak:nth-child(3) { transition-delay: 0.15s; }
.korak:nth-child(5) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .usluge__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prednosti__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .kontakt__wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 70px 0;
    }

    /* Nav mobile */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: var(--shadow-xl);
        padding: 80px 32px 32px;
        transition: right var(--transition);
        z-index: 100;
    }

    .nav__menu.show {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav__link {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav__link::after {
        display: none;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .nav__toggle {
        display: block;
    }

    .nav__cta {
        display: none;
    }

    /* Hero mobile */
    .hero__content {
        padding: 100px 16px 60px;
    }

    .hero__scene {
        opacity: 0.35;
    }

    .hero__stats {
        flex-direction: column;
        gap: 12px;
    }

    .hero__stat {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .glass-card {
        padding: 14px 18px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    /* Usluge mobile */
    .usluge__grid {
        grid-template-columns: 1fr;
    }

    /* Prednosti mobile */
    .prednosti__grid {
        grid-template-columns: 1fr;
    }

    .prednost-card {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .prednost-card__icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        margin: 0;
    }

    /* Kako radimo mobile */
    .korak {
        flex-direction: column;
        padding: 24px;
    }

    .korak__icon {
        display: none;
    }

    /* Form mobile */
    .form__row {
        grid-template-columns: 1fr;
    }

    .kontakt__form {
        padding: 24px;
    }

    .cta-banner {
        padding: 60px 0;
    }

    /* Footer mobile */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Small mobile */
@media (max-width: 400px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__stat-number {
        font-size: 1.5rem;
    }
}

/* Mobile menu overlay */
.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav__overlay.show {
    opacity: 1;
    visibility: visible;
}
