:root {
    --navy:   #0d1b2a;
    --ice:    #e8f4f8;
    --snow:   #f7fbfd;
    --alpine: #2d6a8f;
    --accent: #c8a96e;
    --text:   #1a2c3d;
    --muted:  #6b8fa8;
    --white:  #ffffff;
    --red:    #c0392b;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--snow);
    color: var(--text);
    line-height: 1.6;
}

/* ── HEADER ─────────────────────────────────────────── */
header {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }

.header-left {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.by-jamtransfer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transform: translateY(6px);
}
.jamtransfer-logo {
    height: 16px;
    width: auto;
    opacity: 0.85;
    vertical-align: middle;
}
.jamtransfer-text-fallback {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.header-email {
    color: var(--ice);
    font-size: 0.85rem;
    text-decoration: none;
    opacity: 0.85;
}
.header-email:hover { opacity: 1; color: var(--accent); }

.header-phone {
    color: var(--ice);
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.header-phone:hover { color: var(--accent); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a55 50%, #2d6a8f 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-eyebrow {
    display: inline-block;
    background: var(--accent);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
    color: var(--ice);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}
.stat-label { font-size: 0.8rem; color: var(--ice); opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }

/* ── BOOKING FORM ───────────────────────────────────── */
#booking-section {
    background: var(--white);
    border-bottom: 3px solid var(--accent);
    padding: 2rem;
    display: none;
}
body.has-route #booking-section {
    display: block;
}
.booking-header {
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
}
.btn-back {
    background: none;
    border: 1px solid var(--muted);
    color: var(--muted);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s;
}
.btn-back:hover { border-color: var(--alpine); color: var(--alpine); }
#bookingFormDiv { max-width: 1200px; margin: 0 auto; }

/* ── REGIONS ─────────────────────────────────────────── */
.choose-destination-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    background:
        linear-gradient(rgba(255,255,255,0.70), rgba(255,255,255,0.70)),
        url('https://wis.jamtransfer.com/i/website/geneva.webp') center/cover no-repeat;
    border-radius: 12px;
}

.map-section {
    max-width: 1200px;
    margin: 2rem 0 0;
    padding: 0 2rem;
}
#topRoutesMap {
    width: 100%;
    height: 420px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(13,27,42,0.1);
    z-index: 1; /* Leaflet default z-index može da pregazi header/dropdown-ove bez ovoga */
}
.regions-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 4rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.section-sub {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.region-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(13,27,42,0.07);
    border: 1px solid rgba(13,27,42,0.06);
    transition: box-shadow 0.2s;
}
.region-card:hover { box-shadow: 0 4px 24px rgba(13,27,42,0.12); }

.region-header {
    background: var(--navy);
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}
.region-header:hover { background: #1a2c3d; }
.region-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.region-icon { color: var(--accent); font-size: 1.3rem; }
.region-count {
    background: rgba(200,169,110,0.2);
    color: var(--accent);
    font-size: 0.75rem;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-weight: 500;
}
.region-toggle {
    color: var(--accent);
    font-size: 1.2rem;
    transition: transform 0.3s;
}
.region-card.open .region-toggle { transform: rotate(180deg); }

.destinations-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: var(--snow);
}
.region-card.open .destinations-grid { display: grid; }

.dest-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.8rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.15s;
    cursor: pointer;
}
.dest-link:hover, .dest-link.active {
    background: var(--alpine);
    color: var(--white);
}
.dest-link::before {
    content: '→';
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: color 0.15s;
}
.dest-link:hover::before, .dest-link.active::before { color: var(--white); }

/* ── FEATURES ─────────────────────────────────────────── */
.features {
    background: var(--navy);
    padding: 4rem 2rem;
}
.features-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.feature { text-align: center; }
.feature-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.feature h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.feature p { color: var(--ice); font-size: 0.85rem; opacity: 0.8; font-weight: 300; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
    background: #070e15;
    color: var(--muted);
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
}
footer a { color: var(--accent); text-decoration: none; }

/* ── POPULAR DESTINATIONS ─────────────────────────────── */
.popular-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem 1rem;
}
.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.popular-card {
    background: var(--white);
    border: 1px solid rgba(13,27,42,0.08);
    border-radius: 8px;
    padding: 1.2rem 1rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 2px 8px rgba(13,27,42,0.05);
    transition: all 0.2s;
    display: block;
}
.popular-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13,27,42,0.12);
    border-color: var(--accent);
}
.popular-card.active {
    background: var(--alpine);
    border-color: var(--alpine);
}
.popular-card.active .popular-name,
.popular-card.active .popular-region { color: var(--white); }
.popular-icon-wrap {
    width: 100%;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.6rem;
    background: var(--ice);
    display: flex;
    align-items: center;
    justify-content: center;
}
.popular-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.popular-icon { font-size: 1.6rem; }
.popular-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.2rem;
}
.popular-region {
    font-size: 0.75rem;
    color: var(--muted);
}

/* Rute koje su top ali nisu "main" — skrivene dok se ne klikne "See All" */
.popular-card.extra-route {
    display: none;
}
.popular-grid.show-all .popular-card.extra-route {
    display: block;
}

.see-all-btn {
    display: block;
    margin: 1.5rem auto 0;
    background: none;
    border: 1px solid var(--alpine);
    color: var(--alpine);
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.see-all-btn:hover {
    background: var(--alpine);
    color: var(--white);
}
.see-all-btn.expanded::after {
    content: ' ▲';
}

/* ── SEARCH ────────────────────────────────────────────── */
.search-wrap {
    position: relative;
    max-width: 480px;
    margin: 0 0 3rem;
}
.search-input {
    width: 100%;
    padding: 0.9rem 1.2rem 0.9rem 2.8rem;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    border: 2px solid rgba(13,27,42,0.12);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s;
    background: var(--white);
}
.search-input:focus { border-color: var(--alpine); }
.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 1rem;
    pointer-events: none;
}
.search-results {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid rgba(13,27,42,0.1);
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(13,27,42,0.18);
    max-height: 340px;
    overflow-y: auto;
    z-index: 50;
}
.search-results.show { display: block; }
.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.1rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(13,27,42,0.05);
    font-size: 0.9rem;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover, .search-result-item.highlighted { background: var(--ice); }
.search-result-region { color: var(--muted); font-size: 0.75rem; }
.search-no-results { padding: 1rem 1.1rem; color: var(--muted); font-size: 0.9rem; }

/* ── VEHICLE SEARCH & RESULTS ─────────────────────────── */
.svc-search {
    max-width: 800px;
    margin: 0 auto;
}
.svc-route-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}
.svc-route-point {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 700;
}
.svc-swap-btn {
    background: var(--ice);
    border: 1px solid rgba(13,27,42,0.1);
    color: var(--alpine);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}
.svc-swap-btn:hover {
    background: var(--alpine);
    color: var(--white);
    transform: rotate(180deg);
}
.svc-search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}
.svc-return-grid {
    grid-template-columns: repeat(2, 1fr);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
}
.svc-return-grid.show {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 1rem;
}
.svc-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.svc-field label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}
.svc-field input[type="date"],
.svc-field input[type="time"],
.svc-field input[type="number"] {
    padding: 0.6rem 0.7rem;
    border: 1px solid rgba(13,27,42,0.15);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
}
.svc-field-checkbox {
    justify-content: flex-end;
}
.svc-field-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
}
.svc-search-btn {
    background: var(--alpine);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.svc-search-btn:hover { background: var(--navy); }

.svc-results { margin-top: 1.5rem; }
.svc-loading, .svc-error, .svc-empty {
    text-align: center;
    padding: 2rem;
    color: var(--muted);
}
.svc-error { color: var(--red); }

.svc-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--white);
    border: 1px solid rgba(13,27,42,0.08);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 2px 8px rgba(13,27,42,0.05);
}
.svc-card-img-wrap {
    width: 110px;
    height: 75px;
    border-radius: 6px;
    background: var(--ice);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.svc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.svc-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.svc-card-icon { width: 60%; height: 60%; }
.svc-card-body { flex: 1; min-width: 0; }
.svc-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem;
}
.svc-card-meta {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.2rem;
}
.svc-card-rating {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 0.3rem;
}
.svc-card-price {
    text-align: right;
    flex-shrink: 0;
}
.svc-price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.svc-select-btn {
    background: var(--accent);
    color: var(--navy);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}
.svc-select-btn:hover { background: #b8985e; }

/* ── EXTRAS STEP ───────────────────────────────────────── */
.extras-step {
    max-width: 700px;
    margin: 0 auto;
}
.extras-selected-vehicle {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--ice);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.extras-vehicle-img-wrap {
    width: 90px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}
.extras-vehicle-img { width: 100%; height: 100%; object-fit: cover; }
.extras-vehicle-body { flex: 1; }
.extras-vehicle-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--navy);
}
.extras-vehicle-meta { font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; }
.extras-vehicle-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}

.extras-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 1rem;
}
.extras-empty { color: var(--muted); padding: 1rem 0; }

.extras-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.extras-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(13,27,42,0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.extras-item:has(.extras-checkbox:checked) {
    border-color: var(--alpine);
    background: var(--ice);
}
.extras-checkbox { width: 18px; height: 18px; cursor: pointer; flex-shrink: 0; }
.extras-item-name { flex: 1; font-size: 0.95rem; color: var(--text); }
.extras-item-price { font-weight: 600; color: var(--alpine); }

.extras-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--navy);
    border-radius: 8px;
    margin-bottom: 1.2rem;
}
.extras-total-label { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.extras-total-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.extras-continue-btn { width: 100%; }

/* ── PASSENGER STEP ────────────────────────────────────── */
.passenger-step {
    max-width: 700px;
    margin: 0 auto;
}
.passenger-summary {
    background: var(--ice);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.8rem;
}
.passenger-summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(13,27,42,0.08);
}
.summary-row:last-child { border-bottom: none; }
.summary-label { color: var(--muted); }
.summary-value { color: var(--text); font-weight: 500; }
.summary-row-extra .summary-label { color: var(--alpine); font-size: 0.85rem; }
.summary-row-total {
    margin-top: 0.4rem;
    padding-top: 0.7rem;
    border-top: 2px solid var(--navy);
}
.summary-row-total .summary-label,
.summary-row-total .summary-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
}

.passenger-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 1rem;
}
.passenger-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.passenger-form input[type="text"],
.passenger-form input[type="email"],
.passenger-form input[type="tel"],
.passenger-form input[type="time"] {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(13,27,42,0.15);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
}
.passenger-error {
    color: var(--red);
    font-size: 0.88rem;
    margin-bottom: 1rem;
}
.passenger-submit-btn { width: 100%; margin-top: 0.5rem; }

@media (max-width: 600px) {
    .passenger-grid { grid-template-columns: 1fr; }
}

/* ── PAYMENT STEP ──────────────────────────────────────── */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.payment-method-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.2rem 0.8rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(13,27,42,0.15);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.payment-method-item:has(input:checked) {
    border-color: var(--alpine);
    background: var(--ice);
}
.payment-method-item input[type="radio"] {
    grid-row: 1 / 3;
    align-self: center;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.payment-method-name { font-weight: 600; color: var(--navy); }
.payment-method-desc { font-size: 0.85rem; color: var(--muted); }

#paymentResult:not(:empty) { margin-bottom: 1rem; }

/* ── ORDER CONFIRMED ───────────────────────────────────── */
.order-confirmed {
    max-width: 500px;
    margin: 2rem auto;
    text-align: center;
}
.order-confirmed-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: #2e7d32;
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-confirmed-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
}
.order-confirmed-text {
    color: var(--text);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}
.order-confirmed-ref {
    background: var(--ice);
    border-radius: 6px;
    padding: 0.8rem 1.2rem;
    margin: 1rem 0;
    font-size: 1.05rem;
}

/* ── TERMINAL CONTENT (site_terminals sa WIS-a, pre footera) ── */
.terminal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
}

/* ── HP TWO-COLUMN LAYOUT (velik ekran) ──────────────────
 * Na desktopu: Choose Your Destination + Mapa jedno pored drugog,
 * Popular Destinations + Regioni jedno pored drugog. Na malim ekranima
 * (≤900px) ostaje isti stack raspored kao pre — svaka sekcija dobija
 * nazad svoj originalni padding preko media query-ja ispod. */
.hp-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch; /* leva kolona se rasteže na visinu mape (desne kolone) */
    padding: 3rem 2rem 1rem;
}
.hp-row > .choose-destination-section,
.hp-row > .map-section,
.hp-row > .popular-section,
.hp-row > .regions-section,
.hp-row > .hp-left-col {
    max-width: none;
    margin: 0;
    padding: 0;
    min-width: 0; /* grid item-i imaju default min-width:auto koji ume da
                     kolabira širinu na 0 kad unutra ima width:100% dete
                     (npr. #topRoutesMap) — ovo to sprečava */
}
.hp-left-col {
    display: flex;
    flex-direction: column;
}
.choose-destination-subtext {
    flex: 1;
    display: flex;
    align-items: center;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
    padding: 1.2rem 0 0;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
    .hp-row {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        max-width: none;
    }
    .hp-row .choose-destination-section {
        padding: 4rem 2rem 0;
    }
    .choose-destination-subtext {
        flex: none;
        padding: 1rem 2rem 2rem;
    }
    .hp-row > .map-section {
        margin: 2rem 0 0;
        padding: 0 2rem;
    }
    .hp-row > .popular-section {
        padding: 3.5rem 2rem 1rem;
    }
    .hp-row > .regions-section {
        padding: 1rem 2rem 4rem;
    }
}
@media (max-width: 600px) {
    .hero-stats { gap: 1.5rem; }
    .destinations-grid { grid-template-columns: 1fr 1fr; }
    .header-phone span.label { display: none; }
    .by-jamtransfer { display: none; }
    .header-email { display: none; }
    .popular-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-search-grid { grid-template-columns: 1fr 1fr; }
    .svc-card { flex-wrap: wrap; }
    .svc-card-price { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
}
