/* Visa search results — card layout & requirements panel */
.visa-result-card {
    overflow: visible;
    background: #fff;
    border-radius: 0.875rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    padding: 0;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.visa-result-card.is-expanded .visa-card-compact {
    position: sticky;
    top: 0.35rem;
    z-index: 6;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.visa-result-card.is-expanded {
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
}

.visa-result-card:hover {
    border-color: #ddd6fe;
}

.visa-card-compact {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    cursor: pointer;
    user-select: none;
}

.visa-card-compact:focus {
    outline: none;
}

.visa-card-compact:focus-visible {
    box-shadow: inset 0 0 0 2px #7c3aed;
    border-radius: 0.875rem;
}

@media (max-width: 767px) {
    .visa-card-compact {
        grid-template-columns: 1fr;
    }
}

.visa-card-compact__side {
    text-align: right;
    min-width: 9.5rem;
    flex-shrink: 0;
}

.visa-card-compact__price {
    white-space: nowrap;
}

.visa-card-action-bar {
    display: none;
    position: sticky;
    bottom: 0;
    z-index: 6;
    margin: 1rem -1rem -1rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, #fff 28%);
    border-top: 1px solid #e5e7eb;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.visa-result-card.is-expanded .visa-card-action-bar {
    display: flex;
}

.visa-card-action-bar__price {
    flex-shrink: 0;
    min-width: 0;
}

.visa-card-action-bar__price .visa-card-price__amount {
    font-size: 1.25rem;
}

.visa-card-action-bar .visa-card-book-btn {
    margin-top: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .visa-card-action-bar {
        flex-wrap: wrap;
    }

    .visa-card-action-bar .visa-card-book-btn {
        flex: 1 1 100%;
        width: 100%;
    }

    .visa-card-action-btns .visa-card-book-btn {
        flex: 1 1 calc(50% - 0.25rem);
        width: auto;
    }
}

@media (max-width: 767px) {
    .visa-card-compact__side {
        text-align: left;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        border-top: 1px dashed #e5e7eb;
        padding-top: 0.65rem;
    }
}

.visa-card-title--compact {
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.visa-card-compact__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.45rem;
}

.visa-compact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.45rem;
    border-radius: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    background: #f3f4f6;
    color: #4b5563;
}

.visa-compact-chip i {
    color: #7c3aed;
    font-size: 0.625rem;
}

.visa-card-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.45rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid #ddd6fe;
    border-radius: 9999px;
    background: #faf5ff;
    color: #6d28d9;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease;
}

.visa-card-expand-btn:hover {
    background: #ede9fe;
}

.visa-card-expand-btn__hide {
    display: none;
}

.visa-result-card.is-expanded .visa-card-expand-btn__show {
    display: none;
}

.visa-result-card.is-expanded .visa-card-expand-btn__hide {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.visa-card-expanded {
    padding: 0 1rem 1rem;
    border-top: 1px solid #f3f4f6;
    animation: visaCardExpand 0.22s ease;
}

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

@keyframes visaCardExpand {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.visa-card-expanded .visa-card-meta {
    margin-top: 0.85rem;
}

.visa-card-meta--extra {
    margin-top: 0.65rem;
    padding-top: 0.25rem;
}

.visa-card-expanded .visa-card-footer {
    display: none;
}

.visa-card-compact .visa-card-price__amount {
    font-size: 1.125rem;
}

.visa-card-compact .visa-card-fees {
    display: none;
}

.visa-result-card--online {
    border-left: 4px solid #10b981;
}

.visa-result-card--office {
    border-left: 4px solid #f59e0b;
}

.visa-card-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem 1.25rem;
    align-items: start;
}

@media (max-width: 767px) {
    .visa-card-header {
        grid-template-columns: 1fr;
    }
}

.visa-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.visa-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.visa-card-badge--online {
    background: #d1fae5;
    color: #065f46;
}

.visa-card-badge--office {
    background: #fef3c7;
    color: #92400e;
}

.visa-card-badge--featured {
    background: #fef3c7;
    color: #b45309;
}

.visa-card-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.35;
    margin: 0;
}

.visa-card-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.35rem 0 0;
}

.visa-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.visa-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #374151;
}

.visa-meta-chip i {
    color: #7c3aed;
    font-size: 0.7rem;
}

.visa-meta-chip--travel {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.visa-meta-chip--travel i {
    color: #2563eb;
}

.visa-card-header__action {
    text-align: right;
    min-width: 10.5rem;
}

@media (max-width: 767px) {
    .visa-card-header__action {
        text-align: left;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px dashed #e5e7eb;
    }
}

.visa-card-price__amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #7c3aed;
    line-height: 1.2;
}

.visa-card-price__sub {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.15rem;
}

.visa-card-fees {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.35rem;
    font-size: 0.6875rem;
    color: #6b7280;
    text-align: right;
}

.visa-card-fees span {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

@media (max-width: 767px) {
    .visa-card-fees {
        text-align: left;
    }
    .visa-card-fees span {
        justify-content: flex-start;
    }
}

.visa-card-desc {
    font-size: 0.8125rem;
    color: #4b5563;
    margin: 0.65rem 0 0;
    line-height: 1.5;
}

.visa-card-embassy {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0.45rem 0 0;
}

.visa-card-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.65rem;
    padding: 0.55rem 1.15rem;
    border: none;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

.visa-result-card--office .visa-card-book-btn {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.28);
}

.visa-card-book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
}

.visa-result-card--office .visa-card-book-btn:hover {
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.35);
}

.visa-card-book-btn--disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.visa-card-action-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.visa-card-book-btn--physical {
    background: linear-gradient(135deg, #0e7490 0%, #0369a1 100%);
    box-shadow: 0 4px 12px rgba(14, 116, 144, 0.28);
}

.visa-card-book-btn--physical:hover {
    box-shadow: 0 6px 16px rgba(14, 116, 144, 0.35);
}

@media (max-width: 767px) {
    .visa-card-action-btns {
        width: 100%;
    }
    .visa-card-action-btns .visa-card-book-btn {
        flex: 1 1 calc(50% - 0.25rem);
        min-width: 0;
    }
}

/* Physical submit modal */
body.visa-phys-modal-open {
    overflow: hidden;
}

.visa-phys-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.visa-phys-modal.hidden {
    display: none;
}

.visa-phys-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.visa-phys-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: min(92vh, 720px);
    overflow: auto;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}

.visa-phys-modal__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.visa-phys-modal__eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0e7490;
}

.visa-phys-modal__title {
    margin: 0.15rem 0 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.visa-phys-modal__sub {
    margin: 0.35rem 0 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.visa-phys-modal__close {
    border: none;
    background: #f3f4f6;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    cursor: pointer;
    color: #374151;
}

.visa-phys-modal__body {
    padding: 1rem 1.25rem 1.25rem;
}

.visa-phys-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.visa-phys-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: #374151;
}

.visa-phys-field--full {
    grid-column: 1 / -1;
}

.visa-phys-field input,
.visa-phys-field select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.625rem;
    font-size: 0.875rem;
}

.visa-phys-hint {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    color: #6b7280;
}

.visa-phys-note {
    margin: 0.85rem 0 0;
    font-size: 0.8125rem;
    color: #4b5563;
    line-height: 1.45;
}

.visa-phys-msg {
    min-height: 1.25rem;
    margin: 0.65rem 0 0;
    font-size: 0.8125rem;
}

.visa-phys-msg--ok { color: #047857; }
.visa-phys-msg--err { color: #b91c1c; }

.visa-phys-modal__foot {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.visa-phys-btn {
    border: none;
    border-radius: 0.625rem;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

.visa-phys-btn--ghost {
    background: #f3f4f6;
    color: #374151;
}

.visa-phys-btn--primary {
    background: linear-gradient(135deg, #0e7490 0%, #0369a1 100%);
    color: #fff;
}

.visa-phys-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .visa-phys-grid {
        grid-template-columns: 1fr;
    }
}

.visa-card-hint {
    font-size: 0.8125rem;
    margin: 0.85rem 0 0;
    padding: 0.55rem 0.75rem;
    border-radius: 0.5rem;
}

.visa-card-hint--online {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.visa-card-hint--office {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

.visa-card-notes {
    font-size: 0.75rem;
    color: #92400e;
    margin-top: 0.75rem;
    padding: 0.5rem 0.65rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 0.5rem;
}

.visa-card-footer {
    display: none;
}

.visa-result-card--office .visa-card-footer {
    display: none;
}

.visa-results-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.visa-results-summary__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #374151;
}

.visa-results-summary__pill--online {
    border-color: #a7f3d0;
    background: #ecfdf5;
    color: #047857;
}

.visa-results-summary__pill--office {
    border-color: #fde68a;
    background: #fffbeb;
    color: #92400e;
}

#resultsContainer.visa-results-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.visa-req-panel {
    margin-top: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 40%);
    overflow: hidden;
}

.visa-req-panel > summary {
    list-style: none;
    cursor: pointer;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    user-select: none;
}

.visa-req-panel > summary::-webkit-details-marker {
    display: none;
}

.visa-req-panel > summary::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: auto;
    font-size: 0.75rem;
    color: #7c3aed;
    transition: transform 0.2s ease;
}

.visa-req-panel[open] > summary::after {
    transform: rotate(180deg);
}

.visa-req-panel__body {
    padding: 0 1rem 1rem;
    border-top: 1px solid #f3f4f6;
}

.visa-req-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0 1rem;
}

.visa-req-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #fff;
    border: 1px solid #e9d5ff;
    color: #6b21a8;
}

.visa-req-chip--rate {
    background: #f3e8ff;
    border-color: #d8b4fe;
}

.visa-req-chip--time {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #047857;
}

.visa-req-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    margin-bottom: 0.75rem;
    scrollbar-width: thin;
}

.visa-req-tab {
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.visa-req-tab:hover {
    border-color: #c4b5fd;
    color: #5b21b6;
}

.visa-req-tab.is-active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.25);
}

.visa-req-sections {
    position: relative;
    min-height: 4rem;
}

.visa-req-section {
    display: none;
    animation: visaReqFadeIn 0.2s ease;
}

.visa-req-section.is-active {
    display: block;
}

@keyframes visaReqFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.visa-req-section__head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.visa-req-section__head i {
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: #ede9fe;
    color: #7c3aed;
    font-size: 0.8rem;
}

.visa-req-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

@media (min-width: 640px) {
    .visa-req-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.visa-req-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #374151;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.visa-req-list li i.visa-req-doc-icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: #10b981;
    font-size: 0.75rem;
}

.visa-req-plain {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #4b5563;
    white-space: pre-wrap;
    max-height: 18rem;
    overflow-y: auto;
}

.visa-req-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    border-radius: 9999px;
    background: #ede9fe;
    color: #6d28d9;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Search context banner */
.visa-search-context {
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #e9d5ff;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 60%);
}

.visa-search-context__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.visa-search-context-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.visa-search-context-edit {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
}

.visa-search-context-edit:hover {
    color: #5b21b6;
    text-decoration: underline;
}

.visa-search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.visa-search-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    background: #fff;
    border: 1px solid #ddd6fe;
    color: #4c1d95;
}

.visa-search-chip i {
    color: #7c3aed;
    font-size: 0.75rem;
}

.visa-result-travel {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.5rem;
    border-radius: 0.375rem;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.8125rem;
}

.visa-result-price {
    min-width: 9rem;
}

/* Recent searches */
.visa-recent-searches {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: #faf5ff;
    border: 1px solid #e9d5ff;
    border-radius: 0.75rem;
}
.visa-recent-searches__title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #5b21b6;
}
.visa-recent-searches__title i { margin-right: 0.35rem; }
.visa-recent-searches__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.5rem;
}
.visa-recent-search-chip {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #ddd6fe;
    color: #6d28d9;
    text-decoration: none;
}
.visa-recent-search-chip:hover { background: #f5f3ff; }

/* Eligibility quiz */
.visa-eligibility {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #fff;
    overflow: hidden;
}
.visa-eligibility__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1f2937;
    background: linear-gradient(135deg, #faf5ff 0%, #fff 100%);
    border: none;
    cursor: pointer;
    text-align: left;
}
.visa-eligibility__toggle span i { color: #7c3aed; margin-right: 0.4rem; }
.visa-eligibility__chev { transition: transform 0.2s; color: #9ca3af; }
.visa-eligibility__toggle--open .visa-eligibility__chev { transform: rotate(180deg); }
.visa-eligibility__body { padding: 0 1rem 1rem; }
.visa-eligibility__intro {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0 0 0.75rem;
}
.visa-eligibility__q { margin-bottom: 0.75rem; }
.visa-eligibility__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.35rem;
}
.visa-eligibility__opts {
    display: flex;
    gap: 1rem;
    font-size: 0.8125rem;
}
.visa-eligibility__select {
    width: 100%;
    padding: 0.45rem 0.65rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
}
.visa-eligibility__btn {
    margin-top: 0.25rem;
    padding: 0.5rem 1rem;
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
}
.visa-eligibility__btn:hover { background: #6d28d9; }
.visa-eligibility__result {
    margin-top: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.45;
}
.visa-eligibility__result--ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.visa-eligibility__result--warn { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.visa-eligibility__result--info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.visa-eligibility__nat-note {
    font-size: 0.8125rem;
    color: #5b21b6;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    border-radius: 0.5rem;
    padding: 0.55rem 0.75rem;
    margin: 0 0 0.85rem;
    line-height: 1.45;
}
.visa-eligibility__nat-note i { margin-right: 0.35rem; }
.visa-eligibility__suggest {
    margin: 0.55rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.95;
}
.visa-result-card.visa-card--eligibility-match {
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.35);
    border-color: #059669 !important;
}
.visa-result-card.visa-card--eligibility-dim {
    opacity: 0.72;
}

/* Office locations sidebar */
.visa-office-panel {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}
.visa-office-panel__title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #374151;
    margin: 0 0 0.35rem;
}
.visa-office-panel__title i { color: #7c3aed; margin-right: 0.3rem; }
.visa-office-panel__sub {
    font-size: 0.6875rem;
    color: #6b7280;
    margin: 0 0 0.65rem;
    line-height: 1.4;
}
.visa-office-panel__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}
.visa-office-panel__item {
    font-size: 0.6875rem;
    color: #4b5563;
    line-height: 1.4;
    padding: 0.55rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}
.visa-office-panel__name {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.2rem;
}
.visa-office-panel__addr,
.visa-office-panel__hours,
.visa-office-panel__phone {
    display: block;
    margin-top: 0.15rem;
}
.visa-office-panel__map {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.35rem;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
}
.visa-office-panel__map:hover { text-decoration: underline; }

/* Card office block */
.visa-card-offices {
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    border-radius: 0.65rem;
}
.visa-card-offices__title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #5b21b6;
    margin: 0 0 0.35rem;
}
.visa-card-offices__name { font-size: 0.8125rem; font-weight: 600; margin: 0; }
.visa-card-offices__addr { font-size: 0.75rem; color: #6b7280; margin: 0.2rem 0 0; }
.visa-card-offices__map {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
}

/* Compare */
.visa-card-compare {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
}
.visa-card-compare__input { accent-color: #7c3aed; }
.visa-card-badge--recommended {
    background: #dbeafe;
    color: #1d4ed8;
}
.visa-compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #1f2937;
    color: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.visa-compare-bar__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.visa-compare-bar__text { font-size: 0.875rem; font-weight: 600; }
.visa-compare-bar__actions { display: flex; gap: 0.5rem; }
.visa-compare-bar__btn {
    padding: 0.45rem 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    border: 1px solid #4b5563;
    background: transparent;
    color: #fff;
    cursor: pointer;
}
.visa-compare-bar__btn--primary {
    background: #7c3aed;
    border-color: #7c3aed;
}
.visa-compare-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.visa-compare-modal.hidden { display: none !important; }
.visa-compare-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}
.visa-compare-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 56rem;
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 0.875rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.visa-compare-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}
.visa-compare-modal__head h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
}
.visa-compare-modal__close {
    border: none;
    background: #f3f4f6;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    cursor: pointer;
}
.visa-compare-modal__body { padding: 1rem 1.25rem 1.25rem; overflow-x: auto; }
.visa-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}
.visa-compare-table th,
.visa-compare-table td {
    padding: 0.55rem 0.65rem;
    border: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
}
.visa-compare-table thead th {
    background: #f5f3ff;
    color: #5b21b6;
    font-weight: 700;
}
.visa-compare-table tbody th {
    background: #f9fafb;
    font-weight: 600;
    white-space: nowrap;
}
.visa-compare-book-btn {
    padding: 0.4rem 0.75rem;
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}
.visa-compare-book-btn:hover { background: #6d28d9; }
