:root {
    --bg: #f7f8fa;
    --ink: #111827;
    --muted: #64748b;
    --card: #ffffff;
    --line: #e5e7eb;
    --primary: #ec0928;
    --primary-dark: #b9071f;
    --primary-soft: #fff1f3;
    --accent: #ec0928;
    --dark: #111827;
    --footer: #0f172a;
    --radius: 22px;
    --shadow: 0 18px 50px rgba(15, 23, 42, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
}

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
}

/* =========================
   HEADER
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 78px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.brand img {
    height: 70px;
    width: auto;
    max-width: 220px;
    display: block;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-weight: 900;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: -3px;
}

.main-nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

.main-nav a {
    position: relative;
    padding-bottom: 4px;
    font-weight: 700;
    color: #334155;
    font-size: 14px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
    transition: .3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-phone {
    background: var(--dark);
    color: #fff;
    padding: 11px 15px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
}

.nav-toggle {
    display: none;
    border: 0;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 22px;
}

/* =========================
   COMMON ELEMENTS
========================= */
.input,
.select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 13px 14px;
    background: #fff;
    font: inherit;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 15px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    padding: 13px 18px;
    cursor: pointer;
    transition: .25s ease;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn.dark {
    background: var(--dark);
}

.btn.dark:hover {
    background: #020617;
}

.btn.light {
    background: var(--primary-soft);
    color: var(--primary);
}

.btn.light:hover {
    background: var(--primary);
    color: #fff;
}

.section {
    padding: 76px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section h2,
.page-title h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    margin: 0;
}

.section-head p,
.page-title p {
    color: var(--muted);
    max-width: 650px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.grid {
    display: grid;
    gap: 22px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
    overflow: hidden;
}

.content-card {
    padding: 30px;
}

.content-card h2 {
    margin-top: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 5px 10px;
    font-weight: 900;
    font-size: 12px;
}

.price {
    font-size: 20px;
    font-weight: 950;
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 16px;
    background: #ecfdf5;
    color: #047857;
    font-weight: 800;
}

/* =========================
   OLD HERO / QUICK FORM
========================= */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 10%, rgba(236, 9, 40, .18), transparent 30%),
        linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 44px;
    align-items: center;
    min-height: 610px;
    padding: 70px 0;
}

.eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    font-weight: 800;
    color: #fff;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: .98;
    margin: 18px 0;
}

.hero p {
    font-size: 18px;
    color: #e5e7eb;
    max-width: 640px;
}

.hero-card {
    background: #fff;
    color: var(--ink);
    border-radius: 30px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.hero-card img {
    width: 100%;
    border-radius: 24px;
    background: #f1f5f9;
}

.quick-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
}

/* =========================
   HERO SLIDER
========================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 850px;
    overflow: hidden;
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 700ms ease, transform 6000ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

/* =========================
   VEHICLES
========================= */
.vehicle-card {
    display: flex;
    flex-direction: column;
}

.vehicle-img {
    height: 230px;
    background: #e8eef6;
    overflow: hidden;
}

.vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .35s;
}

.vehicle-card:hover img {
    transform: scale(1.04);
}

.vehicle-body {
    padding: 20px;
}

.vehicle-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
}

.specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin: 16px 0;
    color: #475569;
}

.specs span {
    background: #f8fafc;
    border: 1px solid var(--line);
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 13px;
}

.page-title {
    padding: 70px 0 34px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.detail {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50-50 balans */
    gap: 30px;
    align-items: start;
}

.main-image {
    width: 100%;
    height: 420px;           /* malo manja visina */
    object-fit: contain;
    object-position: center;
    display: block;
}

.vehicle-gallery {
    max-width: 100%;
    overflow: hidden;
}

.thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.thumbs img {
    width: 100%;
    height: 86px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    border: 3px solid transparent;
}

.thumbs img.is-active {
    border-color: var(--primary);
}

.detail-panel {
    padding: 28px;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.feature-list span {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
    color: #334155;
}

.contact-box {
    padding: 26px;
    background: var(--dark);
    color: #fff;
    border-radius: 24px;
    margin-top: 18px;
}

.contact-box p {
    color: #d1d5db;
}

/* =========================
   VEHICLE DETAIL LIGHTBOX
========================= */
.gallery-main-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    border-radius: 26px;
}

.gallery-main-btn .main-image {
    display: block;
}

.vehicle-lightbox {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.vehicle-lightbox.is-open {
    display: flex;
}

.vehicle-lightbox-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(17, 24, 39, .40);
    backdrop-filter: blur(6px);
}

.vehicle-lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(1100px, 96vw);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-lightbox-dialog img {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .35);
    background: #fff;
}

.vehicle-lightbox-close,
.vehicle-lightbox-arrow {
    position: absolute;
    z-index: 3;
    border: 0;
    color: #fff;
    background: rgba(17, 24, 39, .82);
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

.vehicle-lightbox-close {
    top: -18px;
    right: -18px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    font-size: 32px;
    line-height: 1;
}

.vehicle-lightbox-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 68px;
    border-radius: 18px;
    font-size: 52px;
    line-height: 1;
}

.vehicle-lightbox-prev {
    left: -26px;
}

.vehicle-lightbox-next {
    right: -26px;
}

.vehicle-lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: -38px;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(17, 24, 39, .82);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
}

body.lightbox-open {
    overflow: hidden;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: var(--footer);
    color: #e5e7eb;
}

.site-footer p,
.site-footer a {
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 28px;
    padding: 50px 0;
}

.footer-brand img {
    max-width: 180px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 360px;
    margin-bottom: 14px;
}

.footer-col h3 {
    margin-top: 0;
    margin-bottom: 18px;
    color: #fff;
    font-size: 18px;
}

.footer-col p {
    margin: 0 0 13px;
}

.footer-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 18px;
    display: block;
    filter: grayscale(10%);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 18px;
    color: #94a3b8;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    background: #22c55e;
    color: #fff;
    font-weight: 950;
    padding: 13px 17px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(34, 197, 94, .35);
}

/* =========================
   HOME PREMIUM SECTIONS
========================= */
.featured-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.benefits-section {
    padding-top: 34px;
    background:
        radial-gradient(circle at 12% 10%, rgba(236, 9, 40, .07), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(17, 24, 39, .06), transparent 24%),
        var(--bg);
}

.benefits-head {
    margin-bottom: 24px;
}

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

.benefit-card {
    position: relative;
    overflow: hidden;
    min-height: 285px;
    padding: 30px;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .88));
    box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.benefit-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(236, 9, 40, .07);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 65px rgba(15, 23, 42, .11);
    border-color: rgba(236, 9, 40, .22);
}

.benefit-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 16px 30px rgba(236, 9, 40, .22);
}

.benefit-icon svg {
    width: 34px;
    height: 34px;
}

.benefit-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.15;
}

.benefit-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.home-cta-section {
    padding-top: 0;
}

.home-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 20%, rgba(236, 9, 40, .22), transparent 26%),
        linear-gradient(135deg, #111827, #1f2937);
    box-shadow: var(--shadow);
}

.home-cta-card h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
}

.home-cta-card p {
    max-width: 720px;
    margin: 0;
    color: #e5e7eb;
}

.home-cta-card .section-kicker {
    color: #fecdd3;
}

.home-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* =========================
   VEHICLES PAGE PREMIUM
========================= */
.vehicles-page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 18%, rgba(236, 9, 40, .08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vehicles-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 34px;
    align-items: center;
}

.vehicles-page-hero h1 {
    max-width: 820px;
}

.vehicles-page-hero p {
    font-size: 17px;
}

.vehicles-hero-card {
    padding: 28px;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(236, 9, 40, .08), transparent 34%),
        #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
}

.vehicles-hero-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.2;
}

.vehicles-hero-card span {
    display: block;
    color: var(--muted);
}

.vehicles-list-section {
    background: var(--bg);
}

.fleet-info-section {
    padding-top: 8px;
    background:
        radial-gradient(circle at 12% 18%, rgba(236, 9, 40, .07), transparent 28%),
        var(--bg);
}

.fleet-info-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 22px;
    align-items: stretch;
}

.fleet-info-card,
.fleet-mini-card {
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
}

.fleet-info-primary {
    padding: 34px;
    background:
        radial-gradient(circle at 92% 12%, rgba(236, 9, 40, .10), transparent 28%),
        linear-gradient(145deg, #ffffff, #f8fafc);
}

.fleet-info-primary h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
}

.fleet-info-primary p {
    margin: 0 0 14px;
    color: var(--muted);
}

.fleet-info-primary p:last-child {
    margin-bottom: 0;
}

.fleet-mini-card {
    padding: 28px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.fleet-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 65px rgba(15, 23, 42, .10);
}

.fleet-mini-icon,
.airport-info-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin-bottom: 20px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 16px 30px rgba(236, 9, 40, .22);
}

.fleet-mini-icon svg,
.airport-info-icon svg {
    width: 34px;
    height: 34px;
}

.fleet-mini-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.15;
}

.fleet-mini-card p {
    margin: 0;
    color: var(--muted);
}

.airport-info-section {
    padding-top: 0;
}

.airport-info-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 26px;
    align-items: center;
    padding: 34px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 18%, rgba(236, 9, 40, .22), transparent 28%),
        linear-gradient(135deg, #111827, #1f2937);
    box-shadow: var(--shadow);
}

.airport-info-card .section-kicker {
    color: #fecdd3;
}

.airport-info-card h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
}

.airport-info-card p {
    margin: 0 0 10px;
    color: #e5e7eb;
}

.airport-info-card p:last-child {
    margin-bottom: 0;
}

.airport-info-icon {
    margin-bottom: 0;
    background: rgba(255, 255, 255, .14);
    box-shadow: none;
}

.airport-info-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* =========================
   ADMIN
========================= */
.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-side {
    background: #0b1220;
    color: #fff;
    padding: 22px;
}

.admin-side a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #dbeafe;
    margin: 4px 0;
}

.admin-side a:hover {
    background: rgba(255, 255, 255, .08);
}

.admin-main {
    padding: 28px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .06);
}

.admin-table th,
.admin-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.admin-table th {
    background: #f8fafc;
    color: #475569;
    font-size: 13px;
}

.admin-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.login-box {
    width: min(440px, calc(100% - 32px));
    margin: 10vh auto;
    background: #fff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: var(--shadow);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
    .vehicles-hero-inner,
    .fleet-info-grid,
    .airport-info-card {
        grid-template-columns: 1fr;
    }

    .airport-info-actions {
        margin-top: 4px;
    }
}

@media (max-width: 900px) {
    .hero .container,
    .detail,
    .grid-2,
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
     .main-image {
        height: 300px;
    }

    .quick-form {
        grid-template-columns: 1fr 1fr;
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        top: 72px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 12px;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: grid;
    }

    .nav-toggle {
        display: block;
    }

    .nav-phone {
        display: none;
    }

    .hero .container {
        min-height: auto;
        padding: 54px 0;
    }

    .hero-slider {
        height: 420px;
    }

    .section-head {
        display: block;
    }

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

    .benefit-card {
        min-height: auto;
    }

    .home-cta-card {
        display: block;
    }

    .home-cta-actions {
        margin-top: 22px;
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-side {
        position: static;
    }

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

    .main-image {
        height: 330px;
    }

    .footer-map iframe {
        height: 240px;
    }
}

@media (max-width: 700px) {
    .vehicle-lightbox {
        padding: 18px;
    }

    .vehicle-lightbox-close {
        top: 8px;
        right: 8px;
    }

    .vehicle-lightbox-prev {
        left: 8px;
    }

    .vehicle-lightbox-next {
        right: 8px;
    }

    .vehicle-lightbox-arrow {
        width: 42px;
        height: 58px;
        font-size: 42px;
    }

    .vehicle-lightbox-counter {
        bottom: 12px;
    }
}

@media (max-width: 560px) {
    .brand img {
        height: 54px;
        max-width: 180px;
    }

    .quick-form,
    .specs {
        grid-template-columns: 1fr;
    }

    .thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .section {
        padding: 48px 0;
    }

    .vehicle-img {
        height: 210px;
    }

    .hero-slider {
        height: 300px;
    }

    .hero-slide {
        background-size: cover;
        background-position: center;
    }

    .benefit-card,
    .vehicles-hero-card,
    .fleet-info-primary,
    .fleet-mini-card,
    .airport-info-card {
        padding: 24px;
        border-radius: 24px;
    }

    .benefit-icon,
    .fleet-mini-icon,
    .airport-info-icon {
        width: 58px;
        height: 58px;
        border-radius: 19px;
    }

    .home-cta-card {
        padding: 26px;
        border-radius: 24px;
    }
}

/* =========================
   ABOUT PAGE PREMIUM
========================= */
.about-page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 18%, rgba(236, 9, 40, .08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
    align-items: center;
}

.about-page-hero h1 {
    max-width: 820px;
}

.about-page-hero p {
    font-size: 17px;
}

.about-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.about-hero-panel {
    display: grid;
    gap: 14px;
    padding: 26px;
    border: 1px solid rgba(226,232,240,.95);
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0%, rgba(236,9,40,.08), transparent 34%),
        #ffffff;
    box-shadow: 0 18px 45px rgba(15,23,42,.07);
}

.about-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid var(--line);
}

.about-stat strong {
    color: var(--primary);
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
}

.about-stat span {
    color: var(--muted);
    font-weight: 800;
    text-align: right;
}

.about-intro-section {
    background: var(--bg);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 24px;
    align-items: stretch;
}

.about-text-card,
.about-bars-card {
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(226,232,240,.95);
    background: #fff;
    box-shadow: 0 18px 45px rgba(15,23,42,.07);
}

.about-text-card h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
}

.about-text-card p {
    color: var(--muted);
    margin: 0 0 14px;
}

.about-text-card p:last-child {
    margin-bottom: 0;
}

.about-bars-card h3 {
    margin: 0 0 22px;
    font-size: 24px;
}

.about-progress {
    margin-bottom: 20px;
}

.about-progress:last-child {
    margin-bottom: 0;
}

.about-progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
    color: #334155;
    font-weight: 900;
}

.about-progress-top strong {
    color: var(--primary);
}

.about-progress-track {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #f1f5f9;
}

.about-progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.about-service-section {
    background: #fff;
}

.about-service-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.about-service-visual {
    position: relative;
    padding: 0 0 28px 28px;
}

.about-service-visual::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 82%;
    height: 82%;
    border-radius: 28px;
    background: var(--primary-soft);
    z-index: 0;
}

.about-service-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.about-service-content h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
}

.about-service-content p {
    color: var(--muted);
    margin: 0 0 14px;
}

.about-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.about-mini-grid div {
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid var(--line);
}

.about-mini-grid strong {
    display: block;
    color: var(--ink);
    margin-bottom: 4px;
    font-size: 16px;
}

.about-mini-grid span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.about-airport-section {
    padding-top: 0;
    background: #fff;
}

.about-airport-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: center;
    padding: 34px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 20%, rgba(236,9,40,.22), transparent 28%),
        linear-gradient(135deg, #111827, #1f2937);
    box-shadow: var(--shadow);
}

.about-airport-card .section-kicker {
    color: #fecdd3;
}

.about-airport-card h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
}

.about-airport-card p {
    margin: 0 0 10px;
    color: #e5e7eb;
}

.about-airport-card p:last-child {
    margin-bottom: 0;
}

.about-airport-icon {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 28px;
    color: #fff;
    background: rgba(255,255,255,.14);
}

.about-airport-icon svg {
    width: 48px;
    height: 48px;
}

.about-vehicles-section {
    background:
        radial-gradient(circle at 12% 10%, rgba(236,9,40,.07), transparent 28%),
        var(--bg);
}

.about-cta-section {
    padding-top: 0;
    background: var(--bg);
}

@media (max-width: 980px) {
    .about-hero-inner,
    .about-intro-grid,
    .about-service-grid,
    .about-airport-card {
        grid-template-columns: 1fr;
    }

    .about-service-visual {
        padding: 0 0 22px 22px;
    }

    .about-service-visual img {
        height: 340px;
    }
}

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

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

    .about-stat span {
        text-align: left;
    }

    .about-airport-icon {
        width: 72px;
        height: 72px;
        border-radius: 22px;
    }
}

@media (max-width: 560px) {
    .about-hero-panel,
    .about-text-card,
    .about-bars-card,
    .about-airport-card {
        padding: 24px;
        border-radius: 24px;
    }

    .about-service-visual img {
        height: 280px;
        border-radius: 24px;
    }
}

/* =========================
   TERMS / UVJETI PAGE
========================= */
.terms-page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 18%, rgba(236, 9, 40, .08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.terms-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 34px;
    align-items: center;
}

.terms-page-hero h1 {
    max-width: 820px;
}

.terms-page-hero p {
    font-size: 17px;
}

.terms-hero-note {
    padding: 28px;
    border: 1px solid rgba(226,232,240,.95);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(236,9,40,.08), transparent 34%),
        #ffffff;
    box-shadow: 0 18px 45px rgba(15,23,42,.07);
}

.terms-hero-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.2;
}

.terms-hero-note span {
    display: block;
    color: var(--muted);
}

.terms-section {
    background:
        radial-gradient(circle at 12% 10%, rgba(236,9,40,.06), transparent 28%),
        var(--bg);
}

.terms-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 26px;
    align-items: start;
}

.terms-sidebar {
    position: sticky;
    top: 104px;
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(226,232,240,.95);
    background: #fff;
    box-shadow: 0 18px 45px rgba(15,23,42,.07);
}

.terms-sidebar h3 {
    margin: 0 0 16px;
    font-size: 20px;
}

.terms-sidebar nav {
    display: grid;
    gap: 8px;
}

.terms-sidebar a {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
    color: #475569;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
    background: #f8fafc;
    border: 1px solid transparent;
}

.terms-sidebar a:hover {
    color: var(--primary);
    background: var(--primary-soft);
    border-color: rgba(236,9,40,.16);
}

.terms-content {
    display: grid;
    gap: 16px;
}

.terms-intro-card,
.terms-item {
    border-radius: 26px;
    border: 1px solid rgba(226,232,240,.95);
    background: #fff;
    box-shadow: 0 18px 45px rgba(15,23,42,.07);
    overflow: hidden;
}

.terms-intro-card {
    padding: 30px;
}

.terms-intro-card h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
}

.terms-intro-card p {
    margin: 0;
    color: var(--muted);
}

.terms-item summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    background: #fff;
    transition: .25s ease;
}

.terms-item summary::-webkit-details-marker {
    display: none;
}

.terms-item summary span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    color: var(--primary);
    background: var(--primary-soft);
    font-weight: 950;
    font-size: 13px;
}

.terms-item summary strong {
    flex: 1;
    font-size: 17px;
    line-height: 1.25;
}

.terms-item summary::after {
    content: "+";
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--dark);
    font-weight: 900;
    font-size: 20px;
}

.terms-item[open] summary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.terms-item[open] summary span {
    color: var(--primary);
    background: #fff;
}

.terms-item[open] summary::after {
    content: "−";
    background: rgba(255,255,255,.18);
}

.terms-body {
    padding: 24px 30px 30px;
    color: #475569;
    line-height: 1.72;
    border-top: 1px solid var(--line);
}

.terms-body p {
    margin: 0 0 14px;
}

.terms-body ul,
.terms-body ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.terms-body li {
    margin-bottom: 9px;
}

.terms-body strong {
    color: var(--ink);
}

.terms-body em strong {
    color: var(--primary);
}

.terms-body ul ul,
.terms-body ol ol,
.terms-body ul ol,
.terms-body ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

@media (max-width: 980px) {
    .terms-hero-inner,
    .terms-layout {
        grid-template-columns: 1fr;
    }

    .terms-sidebar {
        position: relative;
        top: auto;
    }

    .terms-sidebar nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .terms-sidebar nav {
        grid-template-columns: 1fr;
    }

    .terms-hero-note,
    .terms-intro-card,
    .terms-sidebar {
        padding: 24px;
        border-radius: 24px;
    }

    .terms-item summary {
        align-items: flex-start;
        padding: 18px;
    }

    .terms-item summary strong {
        font-size: 15px;
    }

    .terms-item summary span {
        width: 36px;
        height: 36px;
        border-radius: 13px;
    }

    .terms-item summary::after {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .terms-body {
        padding: 20px;
        font-size: 14px;
    }
}


/* =========================
   CONTACT PAGE PREMIUM
========================= */
.contact-page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 18%, rgba(236, 9, 40, .08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
    align-items: center;
}

.contact-page-hero p {
    font-size: 17px;
}

.contact-hero-card {
    padding: 28px;
    border: 1px solid rgba(226,232,240,.95);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(236,9,40,.08), transparent 34%),
        #ffffff;
    box-shadow: 0 18px 45px rgba(15,23,42,.07);
}

.contact-hero-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.15;
}

.contact-hero-card span {
    display: block;
    color: var(--muted);
}

.contact-map-section iframe {
    display: block;
    width: 100%;
    height: 350px;
}

.contact-info-section {
    background: var(--bg);
}

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

.contact-info-card {
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(226,232,240,.95);
    background: #fff;
    box-shadow: 0 18px 45px rgba(15,23,42,.07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 65px rgba(15,23,42,.10);
}

.contact-info-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin-bottom: 20px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 16px 30px rgba(236,9,40,.22);
}

.contact-info-icon svg {
    width: 34px;
    height: 34px;
}

.contact-info-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.contact-info-card p {
    margin: 0 0 6px;
    font-weight: 900;
}

.contact-info-card span {
    display: block;
    color: var(--muted);
}

.contact-form-section {
    padding-top: 0;
    background: var(--bg);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 28px;
    align-items: start;
}

.contact-form-intro {
    position: sticky;
    top: 110px;
    padding: 34px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 20%, rgba(236,9,40,.22), transparent 28%),
        linear-gradient(135deg, #111827, #1f2937);
    box-shadow: var(--shadow);
}

.contact-form-intro .section-kicker {
    color: #fecdd3;
}

.contact-form-intro h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
}

.contact-form-intro p {
    color: #e5e7eb;
    margin: 0;
}

.contact-note-card {
    margin-top: 24px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
}

.contact-note-card strong,
.contact-note-card span {
    display: block;
}

.contact-note-card strong {
    margin-bottom: 6px;
}

.contact-note-card span {
    color: #e5e7eb;
}

.contact-form-card {
    padding: 34px;
}

.contact-form-card h2 {
    margin: 0 0 22px;
    font-size: 30px;
}

.contact-request-form label {
    display: block;
    margin-bottom: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
}

.contact-request-form p {
    margin: 0;
}

.contact-request-form .btn {
    margin-top: 20px;
}

.alert-error {
    background: #fff1f3;
    color: var(--primary);
}

@media (max-width: 980px) {
    .contact-hero-inner,
    .contact-info-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-intro {
        position: static;
    }
}

@media (max-width: 560px) {
    .contact-hero-card,
    .contact-info-card,
    .contact-form-intro,
    .contact-form-card {
        padding: 24px;
        border-radius: 24px;
    }

    .contact-map-section iframe {
        height: 300px;
    }

    .contact-info-icon {
        width: 58px;
        height: 58px;
        border-radius: 19px;
    }
}


/* =========================
   ADMIN DASHBOARD PREMIUM
========================= */
.admin-dashboard {
    display: grid;
    gap: 24px;
}

.admin-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 18%, rgba(236, 9, 40, .26), transparent 28%),
        linear-gradient(135deg, #111827, #1f2937);
    box-shadow: var(--shadow);
}

.admin-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: #fecdd3;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
}

.admin-hero p {
    margin: 0;
    color: #e5e7eb;
}

.admin-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.admin-stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .07);
}

.admin-stat-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 14px 28px rgba(236, 9, 40, .22);
    flex-shrink: 0;
}

.admin-stat-icon svg {
    width: 32px;
    height: 32px;
}

.admin-stat-icon-green {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 14px 28px rgba(22, 163, 74, .20);
}

.admin-stat-icon-muted {
    background: linear-gradient(135deg, #64748b, #334155);
    box-shadow: 0 14px 28px rgba(51, 65, 85, .18);
}

.admin-stat-card span {
    display: block;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

.admin-stat-card strong {
    display: block;
    margin-top: 2px;
    font-size: 38px;
    line-height: 1;
    font-weight: 950;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 24px;
    align-items: start;
}

.admin-panel {
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .07);
}

.admin-panel .admin-kicker {
    color: var(--primary);
}

.admin-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 20px;
}

.admin-panel-head.compact {
    margin-bottom: 18px;
}

.admin-panel h2 {
    margin: 0;
    font-size: 25px;
    line-height: 1.15;
}

.admin-mini-table-wrap {
    overflow-x: auto;
}

.admin-mini-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-mini-table th,
.admin-mini-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.admin-mini-table th {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.admin-mini-table td strong,
.admin-mini-table td small {
    display: block;
}

.admin-mini-table td small {
    color: var(--muted);
    margin-top: 3px;
}

.admin-status {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
}

.admin-status.is-active {
    color: #15803d;
    background: #dcfce7;
}

.admin-status.is-inactive {
    color: #475569;
    background: #f1f5f9;
}

.admin-table-action {
    text-align: right;
}

.admin-table-action a {
    color: var(--primary);
    font-weight: 900;
}

.admin-action-list {
    display: grid;
    gap: 12px;
}

.admin-action-list a {
    display: block;
    padding: 17px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #f8fafc;
    transition: .25s ease;
}

.admin-action-list a:hover {
    border-color: rgba(236, 9, 40, .25);
    background: var(--primary-soft);
    transform: translateY(-2px);
}

.admin-action-list strong,
.admin-action-list span {
    display: block;
}

.admin-action-list strong {
    color: var(--ink);
    margin-bottom: 3px;
}

.admin-action-list span {
    color: var(--muted);
    font-size: 13px;
}

.admin-progress-card {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
}

.admin-progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 9px;
    font-weight: 950;
}

.admin-progress-top strong {
    color: var(--primary);
}

.admin-progress-track {
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: #f1f5f9;
}

.admin-progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.admin-progress-card p,
.admin-empty {
    color: var(--muted);
}

.admin-progress-card p {
    margin: 10px 0 0;
    font-size: 13px;
}

.admin-empty {
    padding: 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--line);
}

@media (max-width: 980px) {
    .admin-hero,
    .admin-panel-head {
        display: block;
    }

    .admin-hero-actions,
    .admin-panel-head .btn {
        margin-top: 16px;
    }

    .admin-stat-grid,
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .admin-hero,
    .admin-panel,
    .admin-stat-card {
        padding: 22px;
        border-radius: 22px;
    }

    .admin-stat-card {
        align-items: flex-start;
    }

    .admin-stat-icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }
}

/* =========================
   ADMIN PAGES POLISH
========================= */
.admin-page-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
}

.admin-page-head h1,
.admin-page-head h2 {
    margin: 0 0 8px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
}

.admin-page-head h2 {
    font-size: 30px;
}

.admin-page-head p {
    margin: 0;
    color: var(--muted);
}

.admin-page-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.admin-small-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 22px;
}

.admin-small-stats div {
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.admin-small-stats span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.admin-small-stats strong {
    display: block;
    margin-top: 4px;
    font-size: 32px;
    line-height: 1;
    color: var(--ink);
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-vehicles-table td strong,
.admin-vehicles-table td small {
    display: block;
}

.admin-vehicles-table td small {
    margin-top: 3px;
    color: var(--muted);
}

.admin-form-section {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.admin-form-section:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.admin-form-section h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

.admin-vehicle-form label,
.admin-settings-form label,
.admin-login-box label {
    display: block;
    margin-bottom: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
}

.admin-vehicle-form p,
.admin-settings-form p,
.admin-login-box p {
    margin: 0;
}

.admin-checkbox-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.admin-checkbox-row label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid var(--line);
    margin: 0;
}

.admin-form-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.gallery-head {
    margin-top: 30px;
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.admin-gallery-card {
    padding: 14px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.admin-gallery-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin-bottom: 12px;
}

.admin-info-note {
    padding: 16px 18px;
    margin-top: 22px;
    border-radius: 18px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 800;
}

/* =========================
   ADMIN LOGIN
========================= */
.admin-login-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 80% 8%, rgba(236, 9, 40, .18), transparent 30%),
        linear-gradient(135deg, #111827, #1f2937);
}

.admin-login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 16px;
}

.admin-login-brand {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.admin-login-brand img {
    height: 82px;
    width: auto;
    max-width: 260px;
    display: block;
    margin: 0 auto 12px;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,.22));
}

.admin-login-brand span {
    display: block;
    color: #e5e7eb;
    font-weight: 800;
}

.admin-login-box {
    margin: 0;
    width: min(460px, calc(100vw - 32px));
    border: 1px solid rgba(255,255,255,.18);
}

.admin-login-box h1 {
    margin: 0 0 8px;
    font-size: 34px;
}

.admin-login-box > p {
    margin: 0 0 22px;
    color: var(--muted);
}

.admin-login-box .btn {
    width: 100%;
}

.admin-login-footer {
    margin-top: 18px;
    color: #cbd5e1;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 980px) {
    .admin-page-head {
        display: block;
    }

    .admin-page-actions {
        margin-top: 16px;
    }

    .admin-small-stats,
    .admin-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .admin-small-stats div,
    .admin-gallery-card {
        border-radius: 20px;
    }

    .admin-login-brand img {
        height: 68px;
    }
}

/* =========================
   FLOATING ACTIONS
========================= */

/* WhatsApp prikaz samo na mobitel/tablet manjim ekranima */
.floating-whatsapp {
    display: none;
}

@media (max-width: 900px) {
    .floating-whatsapp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 18px;
        bottom: 18px;
        z-index: 30;
        background: #22c55e;
        color: #fff;
        font-weight: 950;
        padding: 13px 17px;
        border-radius: 999px;
        box-shadow: 0 12px 30px rgba(34, 197, 94, .35);
    }
}

/* Back to top dugme */
.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 31;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 24px;
    font-weight: 950;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    box-shadow: 0 14px 32px rgba(236, 9, 40, .28);
    transition: opacity .25s ease, transform .25s ease, background .25s ease;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(8px);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Na mobitelu pomjeramo back-to-top iznad WhatsApp dugmeta */
@media (max-width: 900px) {
    .back-to-top {
        bottom: 78px;
    }
}

@media (max-width: 560px) {
    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 12px 15px;
    }

    .back-to-top {
        right: 14px;
        bottom: 74px;
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}

/* USED VEHICLES ADMIN ADDON */
.admin-gallery-card p {
    margin: 8px 0;
    color: var(--muted);
    font-size: 13px;
}

