:root {
    --sky: #4A90D9;
    --sky-deep: #0066CC;
    --navy: #0B1A2A;
    --navy-mid: #0066CC;
    --navy-dark: #061220;
    --primary: #0066CC;
    --primary-hover: #0052A3;
    --yellow: #0066CC;
    --yellow-hover: #0052A3;
    --orange: #E8A317;
    --teal: #2A9D8F;
    --text: #0B1A2A;
    --muted: #757575;
    --border: #D0D5DD;
    --white: #ffffff;
    --danger: #c0392b;
    --success: #1e7e4f;
    --shadow: 0 10px 30px rgba(11, 26, 42, 0.18);
    --radius: 4px;
    --font: "Poppins", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    min-height: 100%;
}

a { color: var(--navy-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

/* Header */
.site-header {
    background: #E8ECF1;
    border-bottom: 1px solid #757575;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    font-size: 12px;
}

.header-top a { color: #213b73; font-weight: 500; }
.header-top a:hover { color: #005daa; text-decoration: none; }

.header-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 14px;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    text-decoration: none;
}

.brand:hover { text-decoration: none; }

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-mid), var(--teal));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 18px;
}

.brand-text strong {
    display: block;
    font-size: 20px;
    letter-spacing: 0.02em;
}

.brand-text span {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    font-weight: 600;
}

.header-nav a { color: #213b73; }
.header-nav a:hover { color: #005daa; text-decoration: none; }

.btn-agency {
    background: var(--navy);
    color: white !important;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 13px;
}

.btn-agency:hover { background: var(--navy-mid); text-decoration: none; }

/* Hero */
.hero {
    position: relative;
    z-index: 5;
    background: linear-gradient(180deg, #5BA3E0 0%, #8fcceb 55%, #0066CC 100%);
    /* Keep visible so location suggestions can overlay the section below */
    overflow: visible;
    padding: 28px 0 18px;
}

.hero-art {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-art svg {
    position: absolute;
    bottom: 0;
    width: 220px;
    opacity: 0.95;
}

.hero-art .art-left { left: 2%; }
.hero-art .art-right { right: 2%; width: 240px; }

.hero-title {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #12325f;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    margin: 8px 0 22px;
    text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

/* Search panel */
.search-panel {
    position: relative;
    z-index: 10;
    background: var(--navy);
    color: white;
    border-radius: 6px;
    padding: 18px 18px 16px;
    box-shadow: var(--shadow);
}

.search-panel h1,
.search-panel h2 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
}

.search-panel .hint {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.85;
}

.search-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.9fr;
    gap: 10px;
}

.search-grid-2 {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr 0.8fr 0.55fr 0.9fr auto;
    gap: 10px;
    margin-top: 10px;
    align-items: end;
}

.field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #d7e6ff;
}

.field label .req { color: #ffd84d; }

.field input,
.field select,
.field textarea {
    width: 100%;
    height: 38px;
    border: 1px solid #c9d4e4;
    border-radius: 2px;
    padding: 0 10px;
    font: inherit;
    font-size: 13px;
    color: var(--text);
    background: white;
}

.field textarea { height: auto; min-height: 84px; padding: 10px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 2px solid #5ab7e8;
    border-color: #5ab7e8;
}

.autocomplete {
    position: relative;
}

.suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 2px);
    background: white;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 2px;
    max-height: 280px;
    overflow: auto;
    z-index: 50;
    display: none;
    box-shadow: 0 10px 28px rgba(7, 31, 72, 0.28);
}

/* Body-portaled list — escapes hero/footer stacking contexts */
.suggestions.suggestions-portal {
    position: fixed;
    right: auto;
    z-index: 10000;
}

.suggestions.open { display: block; }

.suggestions button {
    width: 100%;
    text-align: left;
    border: 0;
    background: white;
    padding: 10px 12px;
    font: inherit;
    font-size: 12px;
    cursor: pointer;
    border-bottom: 1px solid #eef2f7;
}

.suggestions button:hover { background: #eef6fc; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 2px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: 0.15s ease;
}

.btn:hover { text-decoration: none; }

.btn-primary, .btn-yellow { background: var(--primary); color: #fff; border-color: var(--primary); font-weight: 600; }

.btn-yellow:hover { background: var(--yellow-hover); }

.btn-navy {
    background: var(--navy);
    color: white;
    min-height: 40px;
    padding: 0 18px;
}

.btn-navy:hover { background: var(--navy-mid); color: white; }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
    min-height: 40px;
    padding: 0 16px;
}

.btn-outline:hover { background: #eef4ff; }

.btn-danger {
    background: var(--danger);
    color: white;
    min-height: 40px;
    padding: 0 18px;
}

.btn-danger:hover { filter: brightness(0.95); color: white; }

/* Login modal: always fixed to viewport (never in page flow). */
.login-modal,
.login-modal[hidden] {
    display: none !important;
}

.login-modal.is-open {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 16px !important;
    z-index: 2147483000 !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.login-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 31, 72, 0.55);
}

.login-modal-dialog {
    position: relative;
    width: min(420px, 100%);
    max-height: min(90vh, 640px);
    overflow: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(7, 31, 72, 0.28);
    padding: 22px 22px 18px;
    z-index: 1;
    -webkit-overflow-scrolling: touch;
}

.login-modal-handle {
    display: none;
}

.login-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    color: var(--muted);
    cursor: pointer;
    z-index: 2;
}

.login-modal-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-right: 28px;
}

.login-modal-brand .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #0b3a6e, #3db8c9);
    color: #fff;
    font-weight: 700;
}

.login-modal-dialog h2 {
    margin: 0 0 6px;
    font-size: 20px;
    color: var(--navy);
}

.login-modal-lede {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.45;
}

.login-modal-dialog .field {
    margin-bottom: 12px;
}

.login-modal-dialog .field label {
    color: var(--muted);
}

.login-modal-dialog .field input {
    width: 100%;
    min-height: 40px;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0 12px;
    font: inherit;
    font-size: 14px;
    color: var(--text);
    background: #fff;
}

.login-modal-dialog .field input:focus {
    outline: none;
    border-color: var(--navy-mid);
    box-shadow: 0 0 0 3px rgba(19, 64, 138, 0.12);
}

.login-modal-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 16px;
    font-size: 13px;
    color: var(--text);
}

.login-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

/* Secondary CTA band */
.secondary-band {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #0a2a63 0%, #061220 100%);
    color: white;
    padding: 28px 0 36px;
    margin-top: -6px;
}

.secondary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.secondary-card h3 {
    margin: 0 0 14px;
    font-size: 16px;
}

.secondary-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: start;
}

.icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    flex-shrink: 0;
}

.icon-circle.orange { background: var(--orange); color: white; }
.icon-circle.teal { background: var(--teal); color: white; }

.secondary-item h4 {
    margin: 0 0 6px;
    font-size: 16px;
}

.secondary-item p {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.45;
    color: #d7e4f8;
}

.link-yellow {
    color: var(--yellow);
    font-weight: 700;
    font-size: 13px;
}

.link-yellow:hover { color: #fff5a0; text-decoration: none; }

/* Page content */
.page {
    padding: 28px 0 48px;
    background: #F4F6F9;
    min-height: 55vh;
}

.page-title {
    margin: 0 0 6px;
    font-size: 24px;
    color: var(--navy);
}

.page-sub {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.info-page .panel p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
}

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

.info-list {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.info-list li + li {
    margin-top: 6px;
}

.oficinas-search-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 0.5fr auto;
    gap: 12px;
    align-items: end;
}

.oficinas-hint {
    margin: 12px 0 0;
    font-size: 12px;
    color: var(--muted);
}

.oficinas-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 16px;
    margin-top: 16px;
}

.oficinas-results-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.oficinas-results-head h3 {
    margin: 0;
}

.oficinas-meta {
    font-size: 12px;
    color: var(--muted);
}

.oficinas-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 560px;
    overflow: auto;
}

.oficinas-result {
    display: grid;
    gap: 2px;
    text-align: left;
    width: 100%;
    border: 1px solid var(--border);
    background: #f8fafc;
    border-radius: 6px;
    padding: 10px 12px;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.oficinas-result:hover,
.oficinas-result.is-active {
    border-color: var(--navy);
    background: #eef4ff;
}

.oficinas-result strong {
    color: var(--navy);
    font-size: 14px;
}

.oficinas-result span,
.oficinas-result em {
    font-size: 12px;
    color: var(--muted);
    font-style: normal;
}

.oficinas-empty {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.oficinas-detail-head {
    margin-bottom: 14px;
}

.oficinas-detail-head h4 {
    margin: 0 0 4px;
    color: var(--navy);
}

.oficinas-detail-head span {
    font-size: 12px;
    color: var(--muted);
}

.oficinas-detail-section {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e8eef6;
}

.oficinas-detail-section h5 {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--navy);
}

.oficinas-detail-section ul {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.oficinas-detail-section p {
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--muted);
}

.oficinas-info-block {
    margin-top: 8px;
}

.oficinas-info-block strong {
    display: block;
    font-size: 12px;
    color: var(--navy);
}

.oficinas-info-block p {
    margin: 2px 0 0;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.step-pill {
    background: white;
    border: 1px solid var(--border);
    color: var(--muted);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
}

.step-pill.active {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
}

.step-pill.done {
    background: #e7f7ee;
    border-color: #b9e4cb;
    color: var(--success);
}

.panel {
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(16, 40, 80, 0.04);
}

.panel + .panel { margin-top: 16px; }

.panel h3 {
    margin: 0 0 14px;
    font-size: 16px;
    color: var(--navy);
}

.alert {
    border-radius: 4px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 13px;
}

.alert-error {
    background: #fdecea;
    color: #8a1f16;
    border: 1px solid #f5c2c0;
}

.alert-success {
    background: #e8f8ef;
    color: #145a36;
    border: 1px solid #b7e4c7;
}

.alert-info {
    background: #eaf4ff;
    color: #0f3d75;
    border: 1px solid #bfd8f5;
}

.alert-mock {
    background: #fff8db;
    color: #6b5700;
    border: 1px solid #f0e2a0;
    font-size: 12px;
}

/* Results */
.modify-search {
    margin: 0 0 18px;
}

.modify-search-bar {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr auto;
    gap: 18px;
    align-items: center;
    background: #fff;
    border: 1px solid #e3e9f2;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 8px 24px rgba(11, 47, 107, 0.08);
}

.modify-search.is-editing .modify-search-bar {
    display: none;
}

.modify-search-panel {
    background: #0B1A2A;
    color: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(11, 47, 107, 0.18);
}

.modify-search-panel[hidden] {
    display: none !important;
}

.modify-search-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.modify-search-actions .checkbox {
    color: #d7e6ff;
    font-size: 13px;
}

.modify-search-actions-right {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.modify-search-panel .btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.modify-search-panel .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.modify-search-panel input.date-picker {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230b3a6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 34px;
}

.modify-search-item {
    min-width: 0;
}

.modify-label {
    display: block;
    font-size: 11px;
    color: #8a97a8;
    margin-bottom: 6px;
}

.modify-value {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    min-width: 0;
}

.modify-value svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: #2f6fb8;
}

.modify-value strong {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modify-search-btn {
    white-space: nowrap;
    min-height: 42px;
    padding: 0 18px;
}

.results-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.filters-panel {
    background: #fff;
    border: 1px solid #e3e9f2;
    border-radius: 12px;
    padding: 14px;
    position: sticky;
    top: 12px;
}

.filters-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.filters-head h3 {
    margin: 0;
    font-size: 18px;
    color: var(--navy);
}

.filters-reset {
    border: 0;
    background: transparent;
    color: #2f6fb8;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.filters-reset:hover { text-decoration: underline; }

.filter-section {
    border-top: 1px solid #eef2f7;
    padding: 10px 0;
}

.filter-section:first-of-type { border-top: 0; }

.filter-section-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 0;
    background: transparent;
    padding: 4px 0;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.filter-section-toggle .chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid #8a97a8;
    border-bottom: 2px solid #8a97a8;
    transform: rotate(45deg);
    transition: transform .15s ease;
}

.filter-section-toggle[aria-expanded="false"] .chevron {
    transform: rotate(-45deg);
    margin-top: 4px;
}

.filter-section-body {
    margin-top: 10px;
}

.price-range input[type="range"] {
    width: 100%;
    accent-color: #2f6fb8;
}

.price-range-inputs {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted);
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
    margin: 0 0 8px;
    cursor: pointer;
}

.filter-check:last-child { margin-bottom: 0; }

.filter-check input {
    width: 16px;
    height: 16px;
    accent-color: #2f6fb8;
}

.filter-static {
    font-size: 13px;
    color: var(--muted);
    padding: 4px 0;
}

.results-main { min-width: 0; }

.results-header {
    background: #f3f6fa;
    border: 1px solid #e3e9f2;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 14px;
}

.results-count {
    margin: 0 0 4px;
    font-size: 22px;
    line-height: 1.25;
    color: var(--navy);
}

.results-dates {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

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

.vehicle-card {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr) 176px;
    gap: 20px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid #e3e9f2;
    border-radius: 10px;
    background: #fff;
}

.vehicle-card[hidden] { display: none !important; }

.vehicle-card:hover {
    border-color: #c7d4e8;
    box-shadow: 0 8px 22px rgba(11, 47, 107, 0.08);
}

.vehicle-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vehicle-sipp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: 3px 10px;
    border-radius: 999px;
    background: #eef2f7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #757575;
    text-transform: uppercase;
}

.vehicle-photo {
    width: 100%;
    height: 108px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3fa 100%);
    border-radius: 8px;
    overflow: hidden;
}

.vehicle-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.vehicle-foot-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.vehicle-foot-pills span {
    border: 1px solid #d7deea;
    color: #757575;
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 11px;
    font-weight: 600;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 28px;
}

.brand-logo-img {
    display: block;
    width: auto;
    max-width: 132px;
    max-height: 28px;
    object-fit: contain;
}

.brand-logo.brand-al .brand-logo-img { max-height: 30px; max-width: 118px; }
.brand-logo.brand-et .brand-logo-img { max-height: 26px; max-width: 140px; }
.brand-logo.brand-zl .brand-logo-img { max-height: 28px; max-width: 132px; }

.vehicle-meta {
    min-width: 0;
}

.vehicle-meta h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.25;
    color: var(--navy);
}

.vehicle-specs {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    color: var(--muted);
    font-size: 12px;
}

.vehicle-specs li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vehicle-specs li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9eb0c7;
}

.plan-banner {
    display: inline-flex;
    align-items: center;
    background: #eaf3ff;
    color: #184f8f;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.inclusion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.inclusion-chip {
    background: #e7f7ee;
    color: #14633c;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

.vehicle-price {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    text-align: right;
    padding-left: 12px;
    border-left: 1px solid #e8eef6;
    min-height: 140px;
}

.vehicle-price .price-days {
    font-size: 12px;
    color: var(--muted);
}

.vehicle-price .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.02em;
}

.vehicle-price .price-note {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.35;
    margin-bottom: 4px;
}

.vehicle-price .btn {
    width: 100%;
    margin-top: 4px;
}

.btn.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge {
    background: #eef3fa;
    color: #24406d;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rate-box {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px 12px;
    text-align: center;
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rate-box .label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
}

.rate-box .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin: 6px 0;
}

.rate-box .note {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 10px;
    line-height: 1.35;
}

.rate-box .btn { width: 100%; font-size: 13px; min-height: 34px; }

.booking-main,
.booking-sidebar {
    display: grid;
    gap: 12px;
    align-content: start;
}

.pay-toggle-block {
    margin: 0;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #e3e9f2;
    border-radius: 8px;
}

.pay-toggle-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.pay-toggle-help {
    margin: 0 0 10px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

.pay-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.pay-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.pay-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pay-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid #cfd8e6;
    border-radius: 8px;
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.pay-option input:checked + span {
    border-color: var(--navy);
    background: #eaf2ff;
    box-shadow: inset 0 0 0 1px var(--navy);
}

/* Book / forms */
.split {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 18px;
    align-items: start;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

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

.trip-card .row-line {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eef2f7;
    font-size: 13px;
}

.trip-card .row-line:last-child { border-bottom: 0; }
.trip-card .row-line > span { color: var(--muted); }
.trip-card .row-line strong { text-align: right; }

.trip-brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

.trip-brand-logo {
    display: block;
    width: auto;
    max-width: 110px;
    max-height: 26px;
    object-fit: contain;
}

.total-line {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid var(--navy);
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.checkbox {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.4;
}

.checkbox input { margin-top: 3px; }

/* Confirmation */
.confirm-hero {
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 22px;
    text-align: center;
    margin-bottom: 16px;
}

.confirm-hero .check {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #e8f8ef;
    color: var(--success);
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: 700;
}

.confirm-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.03em;
}

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: #c9d7ef;
    padding: 18px 0;
    font-size: 12px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.site-footer a { color: #e8f0ff; }

@media (max-width: 980px) {
    .search-grid,
    .search-grid-2,
    .results-layout,
    .split,
    .vehicle-card,
    .secondary-grid,
    .modify-search-bar {
        grid-template-columns: 1fr;
    }

    .modify-search-btn { width: 100%; }

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

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

    .filters-panel { position: static; }

    .vehicle-price {
        text-align: left;
        border-left: 0;
        border-top: 1px solid #e8eef6;
        padding-left: 0;
        padding-top: 12px;
        min-height: 0;
    }

    .vehicle-photo { height: 140px; }

    .hero-art { display: none; }

    .header-top { display: none; }
}

.header-top-right {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.locale-switcher { display:inline-flex; align-items:center; gap:6px; font-size:12px; }
.locale-switcher .locale-link { color:inherit; text-decoration:none; opacity:.7; }
.locale-switcher .locale-link.is-active { opacity:1; font-weight:700; text-decoration:none; }
.locale-sep { opacity:.4; }


/* Holiday Auto Limited overrides */
.brand-logo {
    height: 52px;
    width: auto;
    display: block;
}
.btn-primary, .btn-yellow { color: #fff !important; }
.btn-primary:hover, .btn-yellow:hover { background: var(--primary-hover); color: #fff !important; text-decoration: none; }
.btn-agency { background: var(--navy); color: #fff; border: none; padding: 10px 16px; border-radius: var(--radius); font-weight: 600; }
.btn-agency:hover { background: var(--primary); text-decoration: none; color: #fff; }

.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0 8px;
}
.promo-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(11,26,42,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.promo-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(11,26,42,.12); }
.promo-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #0B1A2A; }
.promo-card .promo-body { padding: 14px 14px 16px; }
.promo-card h3 { margin: 0 0 6px; font-size: 15px; color: var(--navy); }
.promo-card p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.45; }

.signup-band {
    background: linear-gradient(135deg, #0B1A2A, #0066CC);
    color: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    margin: 32px 0 8px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    align-items: center;
}
.signup-band h2 { margin: 0 0 8px; font-size: 22px; }
.signup-band p { margin: 0; opacity: .9; font-size: 14px; line-height: 1.5; }
.signup-band form { display: flex; gap: 8px; flex-wrap: wrap; }
.signup-band input[type=email] {
    flex: 1; min-width: 200px; border: none; border-radius: 4px; padding: 12px 14px; font: inherit;
}
.signup-band .btn { white-space: nowrap; }

.seo-band {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    margin: 24px 0 8px;
}
.seo-band h2 { margin: 0 0 10px; font-size: 20px; color: var(--navy); }
.seo-band p { margin: 0 0 10px; color: var(--muted); line-height: 1.6; font-size: 14px; }
.seo-band ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.account-push {
    border: 1px dashed var(--primary);
    background: rgba(0,102,204,.06);
    border-radius: 8px;
    padding: 14px 16px;
    margin: 16px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.account-push strong { color: var(--navy); display: block; margin-bottom: 4px; }
.account-push span { color: var(--muted); font-size: 13px; }

@media (max-width: 980px) {
    .promo-grid { grid-template-columns: repeat(2, 1fr); }
    .signup-band { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .promo-grid { grid-template-columns: 1fr; }
    .brand-logo { height: 42px; }
}
