:root {
    --accent: #ff6b00;
    --accent-hover: #e65f00;
    --ink: #111827;
    --text: #4b5563;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --surface-muted: #eef2f7;
    --line: rgba(17, 24, 39, 0.1);
    --line-strong: rgba(17, 24, 39, 0.18);
    --shadow-soft: 0 18px 40px rgba(17, 24, 39, 0.08);
    --shadow-card: 0 32px 64px rgba(17, 24, 39, 0.12);
    --radius-xl: 24px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    background: var(--surface-soft);
    color: var(--ink);
}

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

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius-md);
    padding: 15px 16px;
    outline: none;
    transition: border-color 140ms ease, box-shadow 140ms ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(255, 107, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}

main {
    min-height: 60vh;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.page-main {
    padding-bottom: 24px;
}

.section {
    padding: 96px 0;
}

.section-tight {
    padding: 24px 0 0;
}

.section-inner {
    padding-top: 40px;
}

.section-muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(248, 250, 252, 0.96) 100%);
}

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

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-head h1,
.section-head h2,
.page-hero h1,
.why-us-copy h2,
.map-copy h2,
.faq-copy h2,
.auth-copy h1,
.status-card h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.section-head p,
.page-hero p,
.why-us-copy p,
.map-copy p,
.faq-copy p,
.auth-copy p,
.status-card p {
    max-width: 620px;
    margin: 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.72;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 80px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(16px);
    background: rgba(248, 250, 252, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9348 100%);
    color: #fff;
    font-weight: 800;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(255, 107, 0, 0.28);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-size: 15px;
    letter-spacing: -0.02em;
}

.brand-copy small {
    color: rgba(17, 24, 39, 0.64);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.main-nav a,
.ghost-link {
    position: relative;
    color: rgba(17, 24, 39, 0.84);
    font-size: 14px;
    font-weight: 600;
}

.main-nav a::after,
.ghost-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
}

.main-nav a:hover::after,
.ghost-link:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lang-switcher {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    display: block;
}

.hero {
    position: relative;
    min-height: clamp(560px, 72vh, 760px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image:
        linear-gradient(120deg, rgba(17, 24, 39, 0.08) 0%, rgba(17, 24, 39, 0.24) 100%),
        url("https://images.unsplash.com/photo-1526481280695-3c4691b208c6?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(10, 16, 26, 0.18) 0%, rgba(10, 16, 26, 0.45) 42%, rgba(10, 16, 26, 0.74) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    gap: 34px;
    align-items: end;
    padding: 110px 0 30px;
}

.hero-copy {
    max-width: 760px;
    color: #fff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 18px 0 0;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero-subtitle {
    margin: 18px 0 0;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.hero-description {
    max-width: 640px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.72;
}

.hero-benefits {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
}

.hero-benefits li {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 700;
}

.hero-benefits li::before {
    content: "✓";
    font-size: 14px;
}

.search-panel {
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: var(--shadow-card);
    border-radius: 22px;
    padding: 22px 24px 18px;
}

.search-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.search-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.search-topline p,
.search-footnote {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

.search-grid {
    display: grid;
    grid-template-columns: 1.35fr 1.35fr 1fr 1fr 0.7fr 0.7fr 0.95fr auto;
    gap: 10px;
    align-items: stretch;
}

.field,
.toggle-field {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}

.field span,
.toggle-field > span {
    font-size: 12px;
    font-weight: 800;
    color: rgba(17, 24, 39, 0.64);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.field input,
.field select {
    border: 0;
    padding: 0;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    background: transparent;
    outline: none;
}

.toggle-field {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.toggle {
    position: relative;
    width: 52px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.18);
}

.toggle input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.toggle i {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    transition: transform 160ms ease;
}

.toggle.is-on {
    background: var(--accent);
}

.toggle input:checked + i {
    transform: translateX(22px);
}

.toggle.is-on i {
    transform: translateX(22px);
}

.search-button,
.btn-primary,
.inline-cta,
.sidebar-cta {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff8a36 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 22px 36px rgba(255, 107, 0, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    padding: 0 20px;
}

.btn-secondary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(17, 24, 39, 0.1);
    background: #fff;
    color: var(--ink);
    font-weight: 700;
}

.btn-sm {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

.search-button:hover,
.btn-primary:hover,
.inline-cta:hover,
.sidebar-cta:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--accent-hover) 0%, #ff7b22 100%);
    box-shadow: 0 24px 40px rgba(230, 95, 0, 0.3);
}

.search-footnote {
    margin-top: 14px;
    line-height: 1.5;
}

.trust-strip {
    position: relative;
    z-index: 3;
    margin-top: -26px;
}

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

.trust-card,
.location-card,
.vehicle-card,
.why-card,
.blog-card,
.review-card,
.info-card,
.editorial-card,
.booking-summary-card,
.data-card,
.table-card,
.content-card,
.install-card,
.stat-card,
.status-card,
.auth-form-card,
.form-shell {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: var(--shadow-soft);
    border-radius: 22px;
}

.trust-card {
    padding: 22px 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.trust-card strong {
    display: block;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.trust-card span {
    display: block;
    margin-top: 6px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(2, 1fr);
    gap: 18px;
}

.location-card {
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.location-card:hover,
.vehicle-card:hover,
.why-card:hover,
.blog-card:hover,
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 58px rgba(17, 24, 39, 0.13);
}

.location-card.large {
    grid-row: span 2;
}

.location-image {
    min-height: 210px;
    background-size: cover;
    background-position: center;
}

.location-card.large .location-image {
    min-height: 460px;
}

.image-kotor { background-image: linear-gradient(180deg, rgba(17,24,39,0.06), rgba(17,24,39,0.3)), url("https://images.unsplash.com/photo-1544737151-6e4b7d5d7f90?auto=format&fit=crop&w=1200&q=80"); }
.image-budva { background-image: linear-gradient(180deg, rgba(17,24,39,0.06), rgba(17,24,39,0.28)), url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80"); }
.image-perast { background-image: linear-gradient(180deg, rgba(17,24,39,0.06), rgba(17,24,39,0.28)), url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=900&q=80"); }
.image-podgorica { background-image: linear-gradient(180deg, rgba(17,24,39,0.06), rgba(17,24,39,0.28)), url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=900&q=80"); }
.image-sveti { background-image: linear-gradient(180deg, rgba(17,24,39,0.06), rgba(17,24,39,0.28)), url("https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=900&q=80"); }
.image-herceg { background-image: linear-gradient(180deg, rgba(17,24,39,0.06), rgba(17,24,39,0.28)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80"); }

.location-body {
    padding: 22px;
}

.location-body h3,
.blog-body h3,
.vehicle-title h3,
.why-card h3,
.booking-summary-card h3,
.info-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.location-body p,
.blog-body p,
.why-card p,
.booking-summary-card p,
.info-card p,
.auth-form-card p,
.status-card p {
    margin: 0;
    color: var(--text);
    line-height: 1.68;
}

.location-body ul,
.vehicle-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 18px 0 20px;
}

.location-body li,
.vehicle-specs li,
.airport-badges a,
.outline-chip {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.06);
    color: rgba(17, 24, 39, 0.75);
    font-size: 13px;
    font-weight: 700;
}

.location-body a,
.blog-body a,
.info-card a {
    color: var(--accent);
    font-weight: 800;
}

.vehicle-grid,
.blog-grid,
.review-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

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

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

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

.vehicle-card,
.blog-card {
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.vehicle-visual,
.blog-image {
    min-height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.vehicle-visual.detail-visual {
    min-height: 340px;
}

.vehicle-tag,
.blog-category,
.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vehicle-tag {
    position: absolute;
    top: 16px;
    left: 16px;
}

.visual-suv { background-image: linear-gradient(180deg, rgba(17,24,39,0.05), rgba(17,24,39,0.3)), url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1200&q=80"); }
.visual-cabrio { background-image: linear-gradient(180deg, rgba(17,24,39,0.05), rgba(17,24,39,0.3)), url("https://images.unsplash.com/photo-1549399542-7e3f8b79c341?auto=format&fit=crop&w=1200&q=80"); }
.visual-family { background-image: linear-gradient(180deg, rgba(17,24,39,0.05), rgba(17,24,39,0.3)), url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=80"); }
.blog-kotor { background-image: linear-gradient(180deg, rgba(17,24,39,0.05), rgba(17,24,39,0.26)), url("https://images.unsplash.com/photo-1493558103817-58b2924bce98?auto=format&fit=crop&w=1200&q=80"); }
.blog-budva { background-image: linear-gradient(180deg, rgba(17,24,39,0.05), rgba(17,24,39,0.26)), url("https://images.unsplash.com/photo-1468413253725-0d5181091126?auto=format&fit=crop&w=1200&q=80"); }
.blog-sveti { background-image: linear-gradient(180deg, rgba(17,24,39,0.05), rgba(17,24,39,0.26)), url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1200&q=80"); }

.vehicle-body,
.blog-body,
.booking-summary-card,
.info-card,
.editorial-card,
.content-card,
.form-shell,
.auth-form-card,
.status-card,
.stat-card,
.table-card {
    padding: 24px;
}

.vehicle-body {
    display: grid;
    gap: 18px;
    min-height: 100%;
}

.vehicle-title {
    display: grid;
    gap: 4px;
}

.vehicle-title span,
.blog-body .blog-category {
    color: var(--text);
}

.vehicle-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
}

.vehicle-card-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.vehicle-price small {
    color: var(--text);
    font-size: 13px;
}

.vehicle-price strong,
.price-display {
    font-size: 34px;
    letter-spacing: -0.06em;
}

.vehicle-card-cta {
    min-height: 52px;
    min-width: 168px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, #111827 0%, #22324c 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 30px rgba(17, 24, 39, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.vehicle-card-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 34px rgba(17, 24, 39, 0.22);
    background: linear-gradient(135deg, var(--accent) 0%, #ff8a36 100%);
}

.why-us-layout,
.map-layout,
.faq-layout,
.detail-layout,
.article-layout,
.content-layout,
.booking-page-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: start;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.why-us-panel {
    padding: 36px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(255, 107, 0, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: var(--shadow-soft);
}

.why-us-points {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.why-us-points div {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 24, 39, 0.06);
}

.why-us-points strong,
.hero-summary-card strong,
.review-author strong {
    display: block;
}

.why-us-points span {
    display: block;
    margin-top: 6px;
    color: var(--text);
    line-height: 1.6;
}

.why-card strong {
    position: relative;
    z-index: 1;
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 0.06em;
}

.why-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 14px;
    min-height: 220px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 20px 44px rgba(17, 24, 39, 0.09);
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 107, 0, 0.14), transparent 32%);
    pointer-events: none;
}

.why-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--accent) 0%, #ffad72 100%);
    opacity: 0.94;
}

.why-card h3,
.why-card p {
    position: relative;
    z-index: 1;
}

.why-card h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.why-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
}

.section-dark-map {
    background:
        radial-gradient(circle at top left, rgba(255, 107, 0, 0.12), transparent 30%),
        linear-gradient(180deg, #0e1726 0%, #101a2b 100%);
    color: #fff;
}

.section-dark-map .section-kicker {
    color: #ff9c5d;
}

.section-dark-map p {
    color: rgba(255, 255, 255, 0.76);
}

.airport-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.airport-badges a {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.map-card {
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-surface {
    position: relative;
    min-height: 460px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.04), transparent 35%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
    overflow: hidden;
}

.map-surface::before {
    content: "";
    position: absolute;
    inset: 28px;
    border-radius: 20px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 700'%3E%3Cpath d='M193 55c42-31 89-51 139-39 59 15 96 73 104 131 9 70-18 138-9 208 7 57 42 108 38 165-6 81-89 123-161 132-45 5-90-2-129-25-66-39-104-118-102-193 2-63 32-120 47-181 11-43 8-89 19-132 12-46 28-86 54-118Z' fill='rgba(255,255,255,0.09)'/%3E%3C/svg%3E") center/contain no-repeat;
}

.map-route {
    position: absolute;
    border-top: 2px dashed rgba(255, 156, 93, 0.9);
    transform-origin: left center;
}

.route-a { top: 170px; left: 148px; width: 220px; transform: rotate(18deg); }
.route-b { top: 250px; left: 210px; width: 180px; transform: rotate(62deg); }

.map-pin {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(255, 107, 0, 0.16);
    padding: 0;
}

.map-pin span {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.pin-tivat { top: 160px; left: 120px; }
.pin-budva { top: 200px; left: 168px; }
.pin-kotor { top: 142px; left: 158px; }
.pin-podgorica { top: 250px; left: 255px; }
.pin-bar { top: 308px; left: 194px; }

.review-card.featured {
    background: linear-gradient(145deg, #111827 0%, #1f2937 100%);
    color: #fff;
}

.review-card.featured p,
.review-card.featured span {
    color: rgba(255, 255, 255, 0.78);
}

.review-stars {
    color: #ffb36a;
    letter-spacing: 0.14em;
    font-size: 14px;
}

.review-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    min-height: 100%;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 20px 44px rgba(17, 24, 39, 0.09);
}

.review-card::before {
    content: "“";
    position: absolute;
    top: 20px;
    right: 24px;
    color: rgba(255, 107, 0, 0.12);
    font-size: 76px;
    font-weight: 800;
    line-height: 1;
}

.review-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 107, 0, 0.12), transparent 30%);
    pointer-events: none;
}

.review-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.review-badge {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.review-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
}

.review-author {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 4px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.review-author span,
.review-card span {
    color: rgba(17, 24, 39, 0.6);
}

.review-card .review-badge,
.review-mini .review-badge {
    display: inline-flex;
    margin-bottom: 0;
    color: var(--accent);
}

.review-card.featured .review-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.review-card.featured::after {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 32%);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    padding: 22px 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: var(--shadow-soft);
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.faq-list p {
    margin: 14px 0 0;
    color: var(--text);
    line-height: 1.75;
}

.page-hero {
    padding: 76px 0 20px;
}

.page-hero-light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.75) 100%);
}

.page-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.page-hero-copy {
    max-width: 900px;
}

.page-hero-side {
    display: grid;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-badges span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.06);
    color: rgba(17, 24, 39, 0.78);
    font-size: 13px;
    font-weight: 700;
}

.hero-summary-card {
    padding: 28px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 107, 0, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: var(--shadow-soft);
}

.hero-summary-card strong {
    margin: 4px 0 14px;
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-summary-card p {
    margin: 0;
    color: var(--text);
    line-height: 1.68;
}

.hero-meta-list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.hero-meta-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.hero-meta-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.hero-meta-list span {
    color: var(--text);
}

.hero-meta-list strong {
    margin: 0;
    font-size: 16px;
    letter-spacing: -0.02em;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(17, 24, 39, 0.54);
    font-size: 13px;
    font-weight: 700;
}

.narrow {
    max-width: 760px;
}

.section-page-body {
    padding-top: 44px;
}

.detail-main,
.side-stack,
.portal-page,
.form-section {
    display: grid;
    gap: 22px;
}

.hero-vehicle-card {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: var(--shadow-soft);
}

.hero-vehicle-body {
    padding: 22px;
}

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

.vehicle-data-grid div {
    padding: 18px;
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.04);
}

.vehicle-data-grid strong {
    display: block;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.vehicle-data-grid span {
    color: var(--text);
    font-size: 13px;
}

.detail-related-section {
    padding-top: 52px;
}

.related-vehicle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.stack-list,
.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stack-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.stack-list li:last-child {
    border-bottom: 0;
}

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

.link-list a {
    color: var(--accent);
    font-weight: 700;
}

.review-mini + .review-mini {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.review-mini {
    padding: 18px 0;
}

.review-mini strong {
    display: block;
    margin-bottom: 6px;
}

.review-mini span {
    display: block;
    color: #ffb36a;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.review-mini .review-card-top > span:first-child {
    margin-bottom: 0;
}

.premium-link-list li {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.03);
    border: 1px solid rgba(17, 24, 39, 0.05);
}

.premium-link-list a {
    display: block;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.55;
}

.article-inline-links {
    margin-top: 34px;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 255, 255, 0.94) 100%);
    border: 1px solid rgba(255, 107, 0, 0.12);
}

.article-inline-links h2 {
    margin: 0 0 10px;
}

.article-inline-links p {
    margin: 0 0 16px;
}

.article-inline-links ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.article-inline-links a {
    color: var(--accent);
    font-weight: 800;
}

.editorial-card,
.article-body-card {
    padding: 28px;
}

.rich-content {
    color: var(--text);
    line-height: 1.82;
}

.rich-content h2,
.rich-content h3 {
    color: var(--ink);
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.rich-content h2 {
    margin: 34px 0 16px;
    font-size: clamp(26px, 3vw, 40px);
}

.rich-content h3 {
    margin: 28px 0 14px;
    font-size: 24px;
}

.rich-content p,
.rich-content ul,
.rich-content ol {
    margin: 0 0 18px;
}

.rich-content ul,
.rich-content ol {
    padding-left: 20px;
}

.form-shell {
    padding: 28px;
}

.booking-form-grid,
.auth-form {
    display: grid;
    gap: 22px;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-grid.two-col,
.field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid label,
.field-grid label,
.auth-form label,
.install-form label {
    display: grid;
    gap: 8px;
}

.form-grid span,
.field-grid span,
.auth-form span,
.install-form span,
.booking-form-grid span {
    font-size: 13px;
    font-weight: 800;
    color: rgba(17, 24, 39, 0.66);
}

.extras-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.extra-check,
.inline-check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.03);
}

.extra-check input,
.inline-check input {
    width: auto;
}

.extra-check span {
    display: grid;
    gap: 4px;
}

.extra-check small {
    color: var(--text);
}

.form-submit {
    width: 100%;
}

.auth-shell {
    padding: 88px 0;
}

.auth-card {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    gap: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.auth-copy {
    padding: 42px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
}

.auth-copy p {
    color: rgba(255, 255, 255, 0.76);
}

.auth-form-card {
    padding: 42px;
}

.oauth-row {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portal-auth-card {
    max-width: 980px;
}

.status-card {
    width: min(760px, calc(100% - 48px));
    margin: 0 auto;
    padding: 34px;
}

.inline-cta {
    margin-top: 18px;
    width: auto;
}

.empty-state,
.premium-empty {
    padding: 36px;
    text-align: center;
}

.data-card,
.table-card {
    overflow: hidden;
}

.premium-table,
table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    text-align: left;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    font-size: 14px;
}

table th {
    color: rgba(17, 24, 39, 0.64);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
}

.alert-error {
    background: #fff1f1;
    border: 1px solid #f0b9b9;
    color: #8f1d1d;
}

.portal-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #eef3f8;
}

.portal-sidebar {
    padding: 28px 22px;
    background: #111827;
    color: rgba(255, 255, 255, 0.78);
}

.admin-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.portal-group-stack {
    display: grid;
    gap: 18px;
}

.portal-nav-group h3 {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portal-brand {
    display: grid;
    gap: 6px;
    margin-bottom: 28px;
}

.portal-brand strong {
    color: #fff;
}

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

.portal-nav a,
.portal-logout {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
}

.portal-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.portal-nav-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 800;
}

.portal-nav a.is-active,
.portal-nav a:hover,
.portal-logout:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.portal-nav a.is-active .portal-nav-icon,
.portal-nav a:hover .portal-nav-icon {
    background: rgba(255, 107, 0, 0.18);
}

.portal-main {
    padding: 28px;
    align-content: start;
}

.admin-main {
    display: grid;
    gap: 24px;
}

.admin-topbar {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.admin-topbar h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -0.04em;
}

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

.portal-page {
    align-content: start;
    gap: 24px;
}

.portal-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.portal-head h1,
.portal-head h2 {
    margin: 0;
    letter-spacing: -0.04em;
}

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

.stat-card span {
    display: block;
    color: var(--text);
    margin-bottom: 10px;
}

.stat-card strong {
    font-size: 30px;
    letter-spacing: -0.05em;
}

.portal-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.summary-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.summary-row {
    margin-top: -8px;
}

.summary-pills span,
.score-badge {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
    font-weight: 800;
}

.portal-head-actions {
    display: flex;
    gap: 12px;
}

.admin-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.admin-metric-card {
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: var(--shadow-soft);
}

.admin-metric-card.accent {
    background: linear-gradient(145deg, #111827 0%, #1f2937 100%);
    color: #fff;
}

.admin-metric-card.accent span,
.admin-metric-card.accent small {
    color: rgba(255, 255, 255, 0.72);
}

.admin-metric-card span {
    display: block;
    color: var(--text);
    margin-bottom: 10px;
}

.admin-metric-card strong {
    display: block;
    font-size: 32px;
    letter-spacing: -0.05em;
    margin-bottom: 8px;
}

.admin-metric-card small {
    color: var(--text);
    line-height: 1.6;
}

.admin-dashboard-grid {
    grid-template-columns: 1.2fr 0.8fr;
}

.cms-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.cms-card-head h3 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.quick-action-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cms-list-card {
    padding: 24px;
}

.cms-list-card-premium {
    display: grid;
    gap: 22px;
    background:
        radial-gradient(circle at top right, rgba(255, 107, 0, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
}

.cms-list-toolbar {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.cms-list-toolbar h3 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.cms-toolbar-copy {
    margin: 8px 0 0;
    color: var(--text);
    line-height: 1.65;
}

.cms-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.table-search {
    min-width: 280px;
}

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

.cms-table-shell {
    padding: 14px 16px 6px;
    border-radius: 20px;
    background: rgba(17, 24, 39, 0.03);
    border: 1px solid rgba(17, 24, 39, 0.05);
}

.record-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.record-card {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 20px 44px rgba(17, 24, 39, 0.09);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.record-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.12), transparent 30%);
    pointer-events: none;
}

.record-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 56px rgba(17, 24, 39, 0.14);
    border-color: rgba(255, 107, 0, 0.18);
}

.record-card.is-clickable {
    cursor: pointer;
}

.record-card-head,
.record-card-body,
.record-card-actions {
    position: relative;
    z-index: 1;
}

.record-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.record-title-stack {
    display: grid;
    gap: 6px;
}

.record-overline {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.06);
    color: rgba(17, 24, 39, 0.72);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.record-title-stack h4 {
    margin: 0;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.record-title-stack p {
    margin: 0;
    color: var(--text);
    line-height: 1.6;
}

.record-status-stack {
    display: flex;
    justify-content: end;
}

.record-card-body {
    display: grid;
    gap: 10px;
}

.record-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.035);
    border: 1px solid rgba(17, 24, 39, 0.05);
}

.record-meta-row span {
    color: rgba(17, 24, 39, 0.62);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.record-meta-row strong {
    text-align: right;
    font-size: 13px;
    line-height: 1.5;
}

.record-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.record-empty-state {
    padding: 34px 28px;
    border-radius: 24px;
    background: rgba(17, 24, 39, 0.03);
    border: 1px dashed rgba(17, 24, 39, 0.12);
    text-align: center;
}

.record-empty-state strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
    letter-spacing: -0.03em;
}

.record-empty-state p {
    margin: 0;
    color: var(--text);
}

.muted-cell {
    color: rgba(17, 24, 39, 0.48);
}

.json-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.06);
    color: rgba(17, 24, 39, 0.68);
    font-size: 12px;
    font-weight: 700;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.status-active,
.status-published,
.status-approved,
.status-completed,
.status-payment_received,
.status-paid {
    background: rgba(19, 101, 58, 0.12);
    color: #13653a;
}

.status-inactive,
.status-draft,
.status-pending,
.status-payment_pending,
.status-partner_pending {
    background: rgba(255, 107, 0, 0.12);
    color: #b44d00;
}

.status-cancelled,
.status-cancelled_by_user,
.status-rejected,
.status-failed {
    background: rgba(190, 37, 37, 0.12);
    color: #9a2222;
}

.empty-cell {
    padding: 20px 0;
    color: var(--text);
}

.cms-edit-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 20px;
    align-items: start;
}

.cms-main-column,
.cms-sidebar {
    display: grid;
    gap: 18px;
}

.cms-language-switch {
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: var(--shadow-soft);
    width: fit-content;
}

.lang-tab {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    border: 0;
    background: transparent;
    color: rgba(17, 24, 39, 0.68);
    font-weight: 800;
}

.lang-tab.is-active {
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
}

.lang-pane {
    display: none;
}

.lang-pane.is-active {
    display: block;
}

.cms-section-card {
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: var(--shadow-soft);
}

.cms-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cms-field {
    display: grid;
    gap: 10px;
}

.cms-field.is-full {
    grid-column: 1 / -1;
}

.cms-field label {
    display: grid;
    gap: 4px;
}

.cms-field label span {
    font-size: 13px;
    font-weight: 800;
    color: rgba(17, 24, 39, 0.72);
}

.cms-field label small {
    color: rgba(17, 24, 39, 0.48);
    line-height: 1.5;
}

.switch-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.switch-row input {
    width: auto;
}

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

.seo-subcard {
    padding: 18px;
    border-radius: 18px;
    background: rgba(17, 24, 39, 0.04);
    display: grid;
    gap: 12px;
}

.seo-subcard strong {
    font-size: 14px;
    letter-spacing: -0.02em;
}

.wysiwyg-shell {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.wysiwyg-toolbar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px;
    background: rgba(17, 24, 39, 0.03);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.wysiwyg-toolbar button {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 10px;
    background: #fff;
    font-weight: 700;
}

.wysiwyg-editor {
    min-height: 220px;
    padding: 16px;
    outline: none;
    line-height: 1.72;
}

.repeater-list,
.json-path-list {
    display: grid;
    gap: 16px;
}

.repeater-item,
.json-path-row {
    padding: 16px;
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.03);
    border: 1px solid rgba(17, 24, 39, 0.06);
}

.repeater-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

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

.json-path-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 10px;
    align-items: center;
}

.cms-sidebar-actions,
.cms-sidebar-field-list {
    display: grid;
    gap: 12px;
}

.install-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.install-card {
    width: min(1120px, 100%);
    padding: 34px;
}

.install-copy {
    margin-bottom: 24px;
}

.install-form {
    display: grid;
    gap: 20px;
}

.site-footer {
    padding: 80px 0 28px;
    background: #111827;
    color: rgba(255, 255, 255, 0.84);
}

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

.site-footer h3,
.site-footer h4 {
    margin: 0 0 16px;
    color: #fff;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.75;
}

.site-footer a,
.social-row span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.72);
}

.social-row {
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

@media (max-width: 1220px) {
    .search-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .page-hero-shell,
    .location-grid,
    .vehicle-grid,
    .blog-grid,
    .review-strip,
    .trust-grid,
    .footer-grid,
    .why-us-layout,
    .map-layout,
    .faq-layout,
    .detail-layout,
    .article-layout,
    .content-layout,
    .booking-page-layout,
    .portal-grid,
    .cms-edit-layout,
    .seo-box-grid,
    .admin-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .location-card.large {
        grid-row: auto;
    }

    .location-card.large .location-image {
        min-height: 260px;
    }

    .vehicle-grid,
    .related-vehicle-grid,
    .review-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .site-header {
        height: 72px;
    }

    .header-row {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: start;
        gap: 14px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 18px;
        box-shadow: var(--shadow-soft);
    }

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

    .ghost-link {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero-content {
        padding-top: 112px;
        gap: 28px;
    }

    .search-grid,
    .page-hero-shell,
    .location-grid,
    .vehicle-grid,
    .blog-grid,
    .review-strip,
    .trust-grid,
    .why-us-grid,
    .footer-grid,
    .why-us-layout,
    .map-layout,
    .faq-layout,
    .detail-layout,
    .article-layout,
    .content-layout,
    .booking-page-layout,
    .portal-grid,
    .stat-grid,
    .portal-shell,
    .auth-card,
    .extras-checks,
    .form-grid.two-col,
    .field-grid,
    .cms-section-grid,
    .seo-box-grid,
    .admin-metric-grid,
    .cms-edit-layout,
    .faq-grid,
    .json-path-row {
        grid-template-columns: 1fr;
    }

    .section-head,
    .portal-head,
    .footer-bottom {
        align-items: start;
        flex-direction: column;
    }

    .map-surface {
        min-height: 360px;
    }

    .portal-sidebar {
        padding-bottom: 12px;
    }

    .table-search {
        min-width: 0;
        width: 100%;
    }

    .vehicle-card-foot {
        display: grid;
        align-items: stretch;
    }

    .vehicle-card-cta {
        width: 100%;
    }

    .related-vehicle-grid,
    .review-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .hero-content {
        padding-top: 98px;
        padding-bottom: 22px;
    }

    .hero-benefits {
        gap: 10px;
    }

    .hero-benefits li {
        width: calc(50% - 5px);
        justify-content: center;
        padding: 0 10px;
        font-size: 12px;
    }

    .search-panel,
    .form-shell,
    .status-card,
    .auth-copy,
    .auth-form-card,
    .install-card,
    .portal-main {
        padding: 18px;
    }

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

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

    .field,
    .toggle-field,
    .search-button {
        min-height: 76px;
    }

    .section,
    .auth-shell {
        padding: 74px 0;
    }

    .trust-strip {
        margin-top: 0;
        padding-top: 18px;
    }

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

    .why-card {
        min-height: 0;
        padding: 24px;
    }

    .why-card h3 {
        font-size: 26px;
    }
}
