/* ── From: about.blade.php ── */
.about-page {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.about-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.about-hero p {
    font-size: 1.15rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.6;
}

.about-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-muted, #3a4560);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-content a {
    color: var(--accent, #1e3a5f);
    text-decoration: none;
}

.about-content a:hover {
    text-decoration: underline;
}

.about-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

.about-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.75rem;
}

.about-cta p {
    color: var(--text-muted, #5A6078);
    margin-bottom: 1.5rem;
}

.about-cta-btn {
    display: inline-block;
    background: var(--accent, #1e3a5f);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.about-cta-btn:hover {
    background: #2a5298;
    text-decoration: none;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.about-stat {
    text-align: center;
    padding: 1.25rem 1rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.about-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent, #1e3a5f);
    display: block;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted, #5A6078);
    margin-top: 0.25rem;
}

@media (max-width: 640px) {
    .about-hero h1 {
        font-size: 1.75rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ── From: dashboard.blade.php ── */
.dashboard-container {
    max-width: 960px;
    margin: 0 auto;
}

/* Header */
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dashboard-subtitle {
    color: var(--text-muted, #5A6078);
    font-size: 1.05rem;
    margin-top: 0.25rem;
}

.btn-new-request {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
}

.btn-icon {
    flex-shrink: 0;
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

/* Sections */
.rfp-section {
    margin-bottom: 2rem;
}

.rfp-section-muted {
    opacity: 0.7;
}

.section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-heading-muted {
    color: var(--text-muted, #5A6078);
    cursor: pointer;
    list-style: none;
}

.section-heading-muted::-webkit-details-marker {
    display: none;
}

.section-heading-muted::before {
    content: '▸ ';
}

.cancelled-details[open] .section-heading-muted::before {
    content: '▾ ';
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    background: var(--accent, #1e3a5f);
    color: #fff;
}

.badge-muted {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-muted, #5A6078);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--bg-surface, #ffffff);
    border: 1px dashed rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    color: var(--text-muted, #5A6078);
}

.empty-state p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* RFP Cards */
.rfp-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rfp-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem;
    transition: border-color 0.2s;
}

.rfp-card:hover {
    border-color: rgba(0, 0, 0, 0.08);
}

.rfp-card.cancelled {
    opacity: 0.5;
}

.rfp-card-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.rfp-card-info {
    flex: 1;
    min-width: 0;
}

.rfp-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.rfp-card-title-muted {
    text-decoration: line-through;
    opacity: 0.7;
}

.rfp-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.meta-item-muted {
    opacity: 0.7;
}

/* Status badges */
.rfp-card-status {
    flex-shrink: 0;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pending {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
}

.status-matched {
    background: rgba(30, 58, 95, 0.10);
    color: #2a5298;
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.status-accepted {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

/* Action buttons */
.rfp-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
    font-family: inherit;
}

.btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
}

.btn-primary {
    background: var(--accent, #1e3a5f);
    color: #fff;
    border: 2px solid var(--accent, #1e3a5f);
}

.btn-primary:hover {
    background: #2a5298;
    border-color: #2a5298;
}

.btn-outline {
    background: transparent;
    color: var(--accent, #1e3a5f);
    border: 1px solid var(--accent, #1e3a5f);
}

.btn-outline:hover {
    background: rgba(30, 58, 95, 0.08);
}

.btn-danger-outline {
    background: transparent;
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-danger-outline:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.btn-secondary {
    background: transparent;
    color: var(--text, #1A1D2E);
    border: 2px solid var(--border, rgba(0, 0, 0, 0.08));
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.06);
}

.btn-danger {
    background: #ef4444;
    color: #fff;
    border: 2px solid #ef4444;
}

.btn-danger:hover {
    background: #dc2626;
    border-color: #dc2626;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.modal-dialog {
    width: 100%;
    max-width: 440px;
}

.modal-content {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.10));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.modal-body {
    color: var(--text-muted, #5A6078);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.modal-actions .btn {
    min-width: 120px;
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .dashboard-title {
        font-size: 1.5rem;
    }

    .rfp-card-main {
        flex-direction: column;
    }

    .rfp-card-actions {
        flex-wrap: wrap;
    }

    .modal-actions {
        flex-direction: column;
    }
}

/* ── From: group-rate-calculator.blade.php ── */
.calc-hero {
    text-align: center;
    padding: 2.5rem 1.5rem 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.calc-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    line-height: 1.15;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.calc-hero p {
    font-size: 1.0625rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.6;
    margin: 0;
}

.calc-wrapper {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
}

/* --- Trip Settings Card --- */
.calc-trip-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.calc-trip-card h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 0 0 1.25rem;
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.calc-field {
    margin-bottom: 1rem;
    position: relative;
}

.calc-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3a4560;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.calc-field input,
.calc-field select {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--bg, #F8F9FC);
    color: var(--text, #1A1D2E);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.2s;
}

.calc-field input:focus,
.calc-field select:focus {
    border-color: var(--accent, #1e3a5f);
}

.calc-field input::placeholder {
    color: #8892A6;
}

.calc-field .field-required {
    color: #ef4444;
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.calc-field .field-error {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.25rem;
    display: none;
}

.calc-field input.field-invalid {
    border-color: #ef4444 !important;
}

.calc-field.error-show .field-error {
    display: block;
}

.calc-field .field-hint {
    font-size: 0.75rem;
    color: #8892A6;
    margin-top: 0.25rem;
}

.nights-display {
    font-size: 0.8rem;
    color: #5A6078;
    margin-top: 0.25rem;
    text-align: center;
}

/* --- Hotel Search --- */
.calc-add-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.calc-add-card h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.75rem;
}

.calc-add-card .add-instructions {
    font-size: 0.9rem;
    color: #5A6078;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.calc-add-card .add-instructions strong {
    color: #2a3450;
}

.hotel-search-wrap {
    position: relative;
    margin-bottom: 1rem;
}

.hotel-search-wrap input {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--bg, #F8F9FC);
    color: var(--text, #1A1D2E);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.2s;
}

.hotel-search-wrap input:focus {
    border-color: var(--accent, #1e3a5f);
}

.hotel-search-wrap input::placeholder {
    color: #8892A6;
}

.hotel-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #181b2e;
    border: 1px solid var(--border, rgba(0, 0, 0, 0.10));
    border-radius: 0 0 8px 8px;
    max-height: 260px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.hotel-dropdown.open {
    display: block;
}

.hotel-dropdown .dropdown-item {
    padding: 0.65rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.15s;
}

.hotel-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.hotel-dropdown .dropdown-item:hover,
.hotel-dropdown .dropdown-item.active {
    background: rgba(30, 58, 95, 0.10);
}

.hotel-dropdown .dropdown-item .item-name {
    font-size: 0.9rem;
    color: var(--text, #1A1D2E);
    font-weight: 500;
}

.hotel-dropdown .dropdown-item .item-location {
    font-size: 0.8rem;
    color: #5A6078;
    margin-top: 0.1rem;
}

.hotel-dropdown .dropdown-empty {
    padding: 1rem;
    text-align: center;
    color: #8892A6;
    font-size: 0.85rem;
}

.manual-add-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 0.5rem;
    align-items: end;
}

.manual-add-row .calc-field {
    margin-bottom: 0;
}

.btn-add-hotel {
    padding: 0.625rem 1.25rem;
    background: var(--accent, #1e3a5f);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-add-hotel:hover {
    background: #2a5298;
}

/* --- Hotel Comparison Table --- */
.calc-compare-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.calc-compare-card h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 0 0 1rem;
}

.calc-empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: #8892A6;
    font-size: 0.9rem;
}

.calc-empty-state .empty-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

.compare-table thead th {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5A6078;
    text-align: left;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.compare-table thead th:last-child {
    text-align: center;
    width: 40px;
}

.compare-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.15s;
}

.compare-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.04);
}

.compare-table td {
    padding: 0.75rem;
    font-size: 0.875rem;
    color: var(--text, #1A1D2E);
    vertical-align: middle;
}

.compare-table td:last-child {
    text-align: center;
}

.compare-table .hotel-name-cell {
    max-width: 200px;
}

.compare-table .hotel-name-cell .hn {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text, #1A1D2E);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.compare-table .hotel-name-cell .hl {
    font-size: 0.75rem;
    color: #8892A6;
}

.compare-table .rate-cell {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.compare-table .rate-cell .strikethrough {
    text-decoration: line-through;
    color: #8892A6;
    font-weight: 400;
    font-size: 0.8rem;
    display: block;
}

.compare-table .savings-cell {
    color: #22c55e;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.btn-remove-hotel {
    background: none;
    border: none;
    color: #8892A6;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.15s;
}

.btn-remove-hotel:hover {
    color: #ef4444;
}

/* --- Summary Card --- */
.calc-summary-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.calc-summary-card h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 0 0 1rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.summary-item {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.summary-item .label {
    font-size: 0.7rem;
    color: #5A6078;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.summary-item .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
}

.summary-item .value.green {
    color: #22c55e;
}

.summary-savings-bar {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1rem;
}

.summary-savings-bar .savings-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.summary-savings-bar .savings-label {
    font-size: 0.875rem;
    color: #5A6078;
}

.calc-cta {
    display: block;
    background: var(--accent, #1e3a5f);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.calc-cta:hover {
    background: #2a5298;
    text-decoration: none;
}

/* --- Convert to RFP CTA --- */
.calc-rfp-card {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(26, 45, 74, 0.06));
    border: 1px solid rgba(30, 58, 95, 0.20);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.calc-rfp-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.5rem;
}

.calc-rfp-card p {
    font-size: 0.9375rem;
    color: #3a4560;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.calc-rfp-card .rfp-price {
    font-size: 0.875rem;
    color: #5A6078;
    margin-top: 0.5rem;
}

.btn-rfp {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a5f, #1a2d4a);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 14px rgba(30, 58, 95, 0.25);
}

.btn-rfp:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    text-decoration: none;
    color: #fff;
}

/* --- History Section --- */
.calc-history-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.calc-history-card h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 0 0 1rem;
}

.history-item {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.history-item:hover {
    border-color: rgba(30, 58, 95, 0.25);
    background: rgba(30, 58, 95, 0.04);
}

.history-item:last-child {
    margin-bottom: 0;
}

.history-item .hi-dates {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.25rem;
}

.history-item .hi-details {
    font-size: 0.8rem;
    color: #5A6078;
    margin-bottom: 0.35rem;
}

.history-item .hi-savings {
    font-size: 0.85rem;
    color: #22c55e;
    font-weight: 600;
}

.history-item .hi-hotels {
    font-size: 0.75rem;
    color: #8892A6;
    margin-top: 0.25rem;
}

.history-item .hi-location {
    font-size: 0.75rem;
    color: rgba(59, 130, 246, 0.7);
    margin-top: 0.15rem;
}

.history-item .hi-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.btn-delete-calc {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #8892A6;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-delete-calc:hover {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.08);
}

.history-empty {
    text-align: center;
    padding: 1.5rem 1rem;
    color: #8892A6;
    font-size: 0.875rem;
}

/* --- Content Sections --- */
.calc-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
}

.calc-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.75rem;
}

.calc-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 1.25rem 0 0.5rem;
}

.calc-section p {
    font-size: 1rem;
    color: var(--text-muted, #3a4560);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.calc-section ul {
    color: var(--text-muted, #3a4560);
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.calc-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.calc-section li strong {
    color: var(--text, #1A1D2E);
}

.calc-divider {
    border: none;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    margin: 0;
}

.discount-slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.discount-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.discount-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent, #1e3a5f);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4);
}

.discount-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--accent, #1e3a5f);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4);
}

.discount-value-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discount-number-input {
    width: 70px !important;
    padding: 0.375rem 0.5rem !important;
    text-align: center;
    font-size: 1rem !important;
    font-weight: 700;
}

.discount-percent {
    font-size: 0.9rem;
    color: #5A6078;
    font-weight: 600;
}

.discount-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #8892A6;
    margin-top: -0.25rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .calc-hero h1 {
        font-size: 1.75rem;
    }
    .manual-add-row {
        grid-template-columns: 1fr 1fr;
    }
    .manual-add-row .calc-field:first-child {
        grid-column: 1 / -1;
    }
    .summary-grid {
        grid-template-columns: 1fr 1fr;
    }
    .compare-table {
        font-size: 0.8rem;
    }
    .compare-table .hotel-name-cell {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .calc-hero {
        padding: 1.5rem 1rem 1rem;
    }
    .calc-hero h1 {
        font-size: 1.5rem;
    }
    .manual-add-row {
        grid-template-columns: 1fr;
    }
    .summary-grid {
        grid-template-columns: 1fr;
    }
    .compare-table .hotel-name-cell {
        max-width: 90px;
    }
    .history-item .hi-dates {
        font-size: 0.85rem;
    }
    .calc-steps .step-label {
        font-size: 0.65rem;
    }
    .calc-steps .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    .sticky-bar-details {
        display: none;
    }
    .chart-bar-label {
        width: 80px;
        font-size: 0.7rem;
    }
}

/* --- Step Progress Indicator --- */
.calc-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    padding: 0 1.5rem;
    gap: 0;
}

.calc-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.calc-steps .step.active,
.calc-steps .step.completed {
    opacity: 1;
}

.calc-steps .step.completed .step-number {
    background: #22c55e;
    border-color: #22c55e;
}

.calc-steps .step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #8892A6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    transition: all 0.3s;
}

.calc-steps .step.active .step-number {
    border-color: var(--accent, #1e3a5f);
    background: var(--accent, #1e3a5f);
}

.calc-steps .step-label {
    font-size: 0.75rem;
    color: #5A6078;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.calc-steps .step.active .step-label {
    color: var(--text, #1A1D2E);
}

.calc-steps .step-line {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0 0.5rem;
    margin-bottom: 1.25rem;
    transition: background 0.3s;
}

.calc-steps .step-line.completed {
    background: #22c55e;
}

/* --- Sticky Bar --- */
.calc-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 19, 34, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(30, 58, 95, 0.25);
    padding: 0.75rem 1.5rem;
    z-index: 1000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.calc-sticky-bar.visible {
    display: block;
    transform: translateY(0);
}

.sticky-bar-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-bar-savings {
    display: flex;
    flex-direction: column;
}

.sticky-bar-label {
    font-size: 0.7rem;
    color: #5A6078;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sticky-bar-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: #22c55e;
}

.sticky-bar-details {
    font-size: 0.8rem;
    color: #5A6078;
}

.sticky-bar-inner .btn-rfp {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* --- Share Bar --- */
.calc-share-bar {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.share-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.share-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-share {
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: var(--text, #1A1D2E);
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-share:hover {
    background: rgba(30, 58, 95, 0.10);
    border-color: rgba(30, 58, 95, 0.25);
    color: #fff;
}

.share-toast {
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

.share-toast.show {
    opacity: 1;
}

/* --- City Context --- */
.city-context {
    font-size: 0.8rem;
    color: rgba(59, 130, 246, 0.8);
    margin-bottom: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(30, 58, 95, 0.04);
    border-radius: 6px;
}

.city-context a {
    color: rgba(59, 130, 246, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.city-context a:hover {
    color: #1e3a5f;
}

/* --- Bar Chart --- */
.calc-chart {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.chart-bar-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.chart-bar-label {
    width: 120px;
    font-size: 0.8rem;
    color: #3a4560;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
}

.chart-bar-track {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.chart-bar {
    height: 14px;
    border-radius: 3px;
    transition: width 0.4s ease;
    position: relative;
}

.chart-bar.online {
    background: rgba(232, 234, 242, 0.2);
}

.chart-bar.group {
    background: #22c55e;
}

.chart-bar-price {
    font-size: 0.65rem;
    color: #5A6078;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.chart-bar.group .chart-bar-price {
    color: #fff;
    font-weight: 600;
}

.chart-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #5A6078;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    display: inline-block;
}

/* ── From: privacy.blade.php ── */
.static-page {
    max-width: 720px;
    margin: 0 auto;
}

.static-page-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.static-page-updated {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 2rem;
}

.static-page-body {
    font-size: 1rem;
    line-height: 1.75;
    color: #3a4560;
}

.static-page-body p {
    margin-bottom: 1rem;
}

.static-page-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.static-page-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.static-page-body ul {
    margin: 0.5rem 0 1rem 1.5rem;
    padding: 0;
    list-style: none;
}

.static-page-body ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.65;
}

.static-page-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent, #1e3a5f);
    font-weight: 700;
}

.static-page-body a {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
    text-decoration-color: rgba(59, 130, 246, 0.4);
    transition: text-decoration-color 0.2s ease;
}

.static-page-body a:hover {
    text-decoration-color: var(--accent, #1e3a5f);
}

.static-page-body strong {
    color: var(--text, #1A1D2E);
    font-weight: 600;
}

@media (max-width: 640px) {
    .static-page-heading {
        font-size: 1.5rem;
    }

    .static-page-body h2 {
        font-size: 1.25rem;
    }

    .static-page-body h3 {
        font-size: 1.05rem;
    }

    .static-page-body ul {
        margin-left: 0.5rem;
    }
}

/* ── From: united-states.blade.php ── */
.us-guide-hero {
    text-align: center;
    padding: 3rem 1.5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.us-guide-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.us-guide-hero p {
    font-size: 1.125rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.7;
    margin: 0;
}

.us-guide-cta {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--accent, #1e3a5f);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s;
}

.us-guide-cta:hover {
    background: #2a5298;
    text-decoration: none;
}

.us-guide-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
}

.us-guide-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 1rem;
}

.us-guide-section p {
    font-size: 1rem;
    color: var(--text-muted, #3a4560);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.us-guide-section ul, .us-guide-section ol {
    color: var(--text-muted, #3a4560);
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.us-guide-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.us-guide-section li strong {
    color: var(--text, #1A1D2E);
}

.us-guide-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 1.5rem 0 0.5rem;
}

.us-guide-callout {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-left: 3px solid var(--accent, #1e3a5f);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.us-guide-callout p {
    margin: 0;
    font-size: 0.95rem;
}

.us-guide-callout strong {
    color: var(--text, #1A1D2E);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.destination-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    padding: 0.875rem 1rem;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.destination-pill:hover {
    border-color: rgba(30, 58, 95, 0.25);
    background: rgba(30, 58, 95, 0.04);
    transform: translateY(-2px);
    text-decoration: none;
}

.destination-pill-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text, #1A1D2E);
}

.destination-pill-state {
    font-size: 0.75rem;
    color: var(--text-muted, #5A6078);
}

.destination-pill-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent, #1e3a5f);
}

.us-guide-divider {
    border: none;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    margin: 0;
}

.us-guide-all-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    color: var(--text, #1A1D2E);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.us-guide-all-link:hover {
    border-color: rgba(30, 58, 95, 0.25);
    background: rgba(30, 58, 95, 0.04);
    text-decoration: none;
}

.us-guide-all-link .count {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted, #5A6078);
    margin-top: 0.25rem;
}

@media (max-width: 640px) {
    .us-guide-hero {
        padding: 2rem 1rem 1.5rem;
    }
    .us-guide-hero h1 {
        font-size: 1.75rem;
    }
    .us-guide-hero p {
        font-size: 1rem;
    }
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

/* ── From: welcome.blade.php ── */
/* ── Hero Section ──────────────────────────────── */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 72px);
    padding: 2rem 1.5rem;
    background: url('https://cdn.hotelhuddle.com/images/hero-background.webp') center center / cover no-repeat;
    position: relative;
}


.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 640px;
}

/* ── Hero Form ─────────────────────────────────── */
.hero-form {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    width: 100%;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.hero-form-field {
    flex: 1;
    min-width: 0;
}

.hero-field-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3a4560;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.hero-field-location {
    flex: 1.8;
    position: relative;
}

.hero-field-dates {
    flex: 1.4;
}

.hero-field-rooms {
    flex: 0.7;
}

.hero-field-submit {
    flex: 0 0 auto;
    align-self: flex-end;
}

.hero-field-location .form-input {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--bg, #F8F9FC);
    color: var(--text, #1A1D2E);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.hero-field-location .form-input:focus {
    border-color: var(--accent, #1e3a5f);
}

.hero-field-location .form-input::placeholder {
    color: var(--text-muted, #8892A6);
}

.hero-submit-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    border: 2px solid var(--accent, #1e3a5f);
    border-radius: 8px;
    cursor: pointer;
    background: var(--accent, #1e3a5f);
    color: #fff;
    transition: all 0.2s;
}

.hero-submit-btn:hover {
    background: #2a5298;
    border-color: #2a5298;
}

.hero-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Autocomplete Dropdown ──────────────────────── */
.autocomplete-wrapper {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 240px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.autocomplete-dropdown.visible {
    display: block;
}

.autocomplete-item {
    padding: 0.6rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.15s;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.04));
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: rgba(30, 58, 95, 0.08);
}

.autocomplete-item .city-name {
    font-weight: 500;
}

.autocomplete-item .city-state {
    color: var(--text-muted, #5A6078);
    font-size: 0.85rem;
}

.autocomplete-loading {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
}

.spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid var(--border, rgba(0, 0, 0, 0.08));
    border-top-color: var(--accent, #1e3a5f);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── Seller-of-Travel notice ────────────────────── */
.sot-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    animation: fadeIn 0.3s ease;
    text-align: left;
}

.sot-icon {
    width: 20px;
    height: 20px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.sot-notice strong {
    color: #fca5a5;
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.85rem;
}

.sot-notice p {
    color: var(--text-muted, #5A6078);
    font-size: 0.8rem;
    margin: 0;
}

/* ── How It Works Section ──────────────────────────── */
.how-it-works-section {
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    padding: 2.5rem 0;
    text-align: center;
}

.hiw-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
}

.hiw-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted, #5A6078);
    margin: 0 0 2rem;
    line-height: 1.55;
}

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hiw-step {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 14px;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    transition: border-color 0.25s, transform 0.15s, box-shadow 0.25s;
}

.hiw-step:hover {
    border-color: rgba(30, 58, 95, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.08);
}

.hiw-step-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.10) 0%, rgba(26, 45, 74, 0.08) 100%);
    border-radius: 12px;
    color: var(--accent, #1e3a5f);
    margin: 0 auto 0.75rem;
}

.hiw-step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent, #1e3a5f);
    background: rgba(30, 58, 95, 0.08);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    line-height: 1;
}

.hiw-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A1D2E;
    margin: 0 0 0.5rem;
}

.hiw-step-desc {
    font-size: 0.88rem;
    color: #3a4560;
    line-height: 1.55;
    margin: 0;
}

.hiw-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hiw-cta-btn {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent, #1e3a5f);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.25s;
}

.hiw-cta-btn:hover {
    background: #2a5298;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
    text-decoration: none;
}

.hiw-learn-more {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent, #1e3a5f);
    text-decoration: none;
    transition: color 0.2s;
}

.hiw-learn-more:hover {
    color: #2a5298;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hiw-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .how-it-works-section {
        padding: 1.5rem 0;
    }
}

@media (max-width: 640px) {
    .hiw-heading {
        font-size: 1.25rem;
    }
}

/* ── Popular Destinations ──────────────────────── */
.destinations-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

/* ── FAQ Section ─────────────────────────────────── */
.faq-section {
    margin-top: 3rem;
}

.faq-heading {
    margin-bottom: 1.25rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.10);
}

.faq-item--open {
    border-color: var(--accent, #1e3a5f);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--text, #1A1D2E);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-question-text {
    flex: 1;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--text-muted, #5A6078);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-chevron--rotated {
    transform: rotate(180deg);
}

.faq-answer-wrapper {
    overflow: hidden;
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted, #3a4560);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}


/* Responsive FAQ */
@media (max-width: 640px) {
    .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }

    .faq-chevron {
        width: 18px;
        height: 18px;
    }
}

.popular-destinations {
    margin-top: 2.5rem;
}

.destinations-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.875rem;
}

.destination-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    padding: 1rem 1.15rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    text-align: left;
}

.destination-card:hover {
    border-color: var(--accent, #1e3a5f);
    background: rgba(30, 58, 95, 0.04);
    transform: translateY(-2px);
}

.destination-card:active {
    transform: translateY(0);
}

/* ── Destination Card with Image ── */
.destination-card.has-image {
    position: relative;
    aspect-ratio: 3 / 2;
    padding: 0;
    overflow: hidden;
}

.destination-card.has-image:hover {
    background: transparent;
}

.destination-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 0.3s;
}

.destination-card.has-image:hover .destination-card-image {
    transform: scale(1.04);
}

.destination-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 13, 23, 0.92) 0%,
        rgba(11, 13, 23, 0.55) 45%,
        rgba(11, 13, 23, 0.1) 100%
    );
    transition: background 0.2s;
}

.destination-card.has-image:hover .destination-card-overlay {
    background: linear-gradient(
        to top,
        rgba(11, 13, 23, 0.95) 0%,
        rgba(11, 13, 23, 0.6) 45%,
        rgba(11, 13, 23, 0.12) 100%
    );
}

.destination-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 1rem 1.15rem;
}

.destination-card.has-image .destination-card-name {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.destination-card.has-image .destination-card-state {
    color: #5A6078;
}

.destination-card.has-image .destination-card-count {
    color: #93c5fd;
}

.destination-card-attribution {
    position: absolute;
    bottom: 4px;
    right: 8px;
    font-size: 0.55rem;
    color: #8892A6;
    z-index: 2;
}

.destination-card-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.2rem;
}

.destination-card-state {
    font-size: 0.8rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 0.5rem;
}

.destination-card-count {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent, #1e3a5f);
    letter-spacing: 0.02em;
}

.destinations-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted, #8892A6);
    font-size: 0.9rem;
}

/* ── Group Types / Use Cases ──────────────────────── */
.group-types-section {
    margin-top: 3rem;
}

.group-types-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.group-types-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 640px;
}

.group-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.group-type-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    min-height: 220px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.15s;
}

.group-type-card:hover {
    border-color: var(--accent, #1e3a5f);
    transform: translateY(-2px);
    text-decoration: none;
}

.group-type-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
}

.group-type-card:hover .group-type-card-image {
    transform: scale(1.04);
}

.group-type-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 13, 23, 0.95) 0%,
        rgba(11, 13, 23, 0.7) 40%,
        rgba(11, 13, 23, 0.3) 100%
    );
    transition: background 0.2s;
}

.group-type-card:hover .group-type-card-overlay {
    background: linear-gradient(
        to top,
        rgba(11, 13, 23, 0.97) 0%,
        rgba(11, 13, 23, 0.75) 40%,
        rgba(11, 13, 23, 0.35) 100%
    );
}

.group-type-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 1.15rem;
}

/* Image-card text overrides */
.group-type-card.has-image .group-type-title {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.group-type-card.has-image .group-type-desc {
    color: #3a4560;
}

.group-type-card.has-image .group-type-link {
    color: #93c5fd;
}

.group-type-card.has-image:hover .group-type-link {
    color: #fff;
}

.group-type-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--accent, #1e3a5f);
}

.group-type-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.group-type-desc {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.55;
    margin: 0 0 0.75rem;
    flex: 1;
}

.group-type-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent, #1e3a5f);
    transition: color 0.2s;
}

.group-type-card:hover .group-type-link {
    color: #2a5298;
}

/* ── AI Technology Section ────────────────────────── */
#ai-technology {
    margin-top: 3rem;
}

.ai-tech-header {
    margin-bottom: 2rem;
}

.ai-tech-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text, #1A1D2E) 0%, var(--accent-2, #1a2d4a) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-tech-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted, #5A6078);
    max-width: 640px;
    line-height: 1.6;
    margin: 0;
}

.ai-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.ai-tech-card {
    position: relative;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    padding: 1.5rem 1.25rem 1.25rem;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    overflow: hidden;
}

.ai-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent, #1e3a5f), var(--accent-2, #1a2d4a));
    opacity: 0;
    transition: opacity 0.2s;
}

.ai-tech-card:hover {
    border-color: var(--accent-2, #1a2d4a);
    background: rgba(139, 92, 246, 0.04);
    transform: translateY(-2px);
}

.ai-tech-card:hover::before {
    opacity: 1;
}

.ai-tech-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(26, 45, 74, 0.08), rgba(30, 58, 95, 0.08));
    color: var(--accent-2, #1a2d4a);
}

.ai-tech-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.ai-tech-desc {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.55;
    margin: 0;
}

/* ── Trust & Authority Bar ────────────────────── */
.trust-bar {
    margin-top: 2.5rem;
    padding: 2rem 0;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.trust-bar-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    transition: border-color 0.2s, transform 0.15s;
}

.trust-stat:hover {
    border-color: var(--accent, #1e3a5f);
    transform: translateY(-2px);
}

.trust-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent, #1e3a5f), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.trust-stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent, #1e3a5f), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.trust-stat-icon svg {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent, #1e3a5f), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--accent, #1e3a5f);
}

.trust-stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted, #5A6078);
    margin-top: 0.5rem;
    letter-spacing: 0.01em;
}

/* ── Why groupRooms? Benefits ─────────────────── */
.why-grouprooms {
    margin-top: 2.5rem;
    padding: 2rem 0;
}

.why-grouprooms-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    text-align: center;
    margin: 0 0 0.5rem;
}

.why-grouprooms-subtitle {
    font-size: 1rem;
    color: var(--text-muted, #5A6078);
    text-align: center;
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.why-grouprooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.why-grouprooms-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
}

.why-grouprooms-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent, #1e3a5f);
    box-shadow: 0 0 12px rgba(30, 58, 95, 0.10);
}

.why-grouprooms-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent, #1e3a5f), var(--accent-2, #1a2d4a));
    color: #fff;
}

.why-grouprooms-icon svg {
    width: 26px;
    height: 26px;
}

.why-grouprooms-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.why-grouprooms-card-text {
    font-size: 0.875rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
    .hero-form {
        flex-wrap: wrap;
    }

    .hero-field-location,
    .hero-field-dates {
        flex: 1 1 100%;
    }

    .hero-field-rooms {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .hero-field-submit {
        flex: 1 1 100%;
    }

    .hero-submit-btn {
        width: 100%;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

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

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

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

    .trust-stat-number {
        font-size: 2rem;
    }

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

@media (max-width: 640px) {
    .hero-section {
        min-height: auto;
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-form {
        padding: 1rem;
        gap: 0.75rem;
    }

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

    .group-types-grid {
        grid-template-columns: 1fr;
    }

    .ai-tech-grid {
        grid-template-columns: 1fr;
    }

    .ai-tech-heading {
        font-size: 1.25rem;
    }

    .trust-bar-grid {
        grid-template-columns: 1fr;
    }

    .why-grouprooms-grid {
        grid-template-columns: 1fr;
    }

    .trust-stat-number {
        font-size: 1.75rem;
    }

    .trust-stat {
        padding: 1.25rem 0.75rem;
    }

    .destination-card {
        padding: 0.85rem 1rem;
    }

    .destination-card.has-image {
        padding: 0;
        aspect-ratio: auto;
    }
}

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

/* ── From: account/checkout.blade.php ── */
.account-page {
    max-width: 640px;
    margin: 0 auto;
}

.account-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.checkout-subtitle {
    color: var(--text-muted, #5A6078);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.checkout-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    color: var(--text-muted, #5A6078);
    font-size: 0.9rem;
    gap: 1rem;
}

.checkout-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(0, 0, 0, 0.08);
    border-top-color: var(--accent, #1e3a5f);
    border-radius: 50%;
    animation: checkout-spin 0.8s linear infinite;
}

@keyframes checkout-spin {
    to { transform: rotate(360deg); }
}

/* Flash messages */
.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flash-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.checkout-back-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

/* Stripe embedded checkout container overrides */
#checkout {
    min-height: 200px;
    margin-bottom: 1rem;
    width: 100%;
}

.checkout-back-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 640px) {
    .account-page {
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
    }
    #checkout {
        width: 100%;
        margin-bottom: 0.75rem;
        padding: 0;
    }
    .checkout-back-link {
        width: 100%;
        justify-content: center;
        min-height: 44px;
        box-sizing: border-box;
    }
}

/* ── From: account/credits.blade.php ── */
.account-page {
    max-width: none;
    margin: 0;
}

.account-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

/* Flash messages */
.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flash-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.flash-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

/* Balance card — reuse plan-card with green accent */
.balance-card {
    border-color: rgba(34, 197, 94, 0.25);
    background: rgba(34, 197, 94, 0.05);
    margin-bottom: 2rem;
}

/* Plan card (reused from subscription page) */
.plan-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.plan-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-badge-unlimited {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.plan-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.plan-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.plan-detail-label {
    color: var(--text-muted, #5A6078);
    font-size: 0.9rem;
}

.plan-detail-value {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-status-active {
    color: #4ade80;
}

.plan-note {
    color: var(--text-muted, #5A6078);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 0.25rem;
}

/* Credits table */
.credits-table-wrapper {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.credits-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.credits-table thead th {
    text-align: left;
    padding: 1rem 1.25rem;
    color: var(--text-muted, #5A6078);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    white-space: nowrap;
}

.credits-table tbody td {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: var(--text);
    vertical-align: middle;
}

.credits-table tbody tr:last-child td {
    border-bottom: none;
}

.credit-date {
    font-weight: 600;
    white-space: nowrap;
}

.credit-description {
    color: var(--text-muted, #3a4560);
}

.credit-amount {
    font-weight: 700;
    white-space: nowrap;
}

.credit-positive {
    color: #4ade80;
}

.credit-negative {
    color: #f87171;
}

.credit-balance {
    font-weight: 600;
    white-space: nowrap;
}

/* Pagination */
.credits-pagination {
    margin-bottom: 2rem;
}

.credits-pagination :deep(.pagination) {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
}

.credits-pagination a,
.credits-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted, #5A6078);
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    text-decoration: none;
    transition: all 0.15s ease;
}

.credits-pagination a:hover {
    color: var(--text);
    border-color: var(--accent, #1e3a5f);
}

.credits-pagination .active span {
    background: var(--accent, #1e3a5f);
    border-color: var(--accent, #1e3a5f);
    color: #fff;
}

.credits-pagination .disabled span {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .account-page {
        padding: 0;
        overflow-x: hidden;
    }
    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .plan-card {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .plan-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }
    .plan-detail-label,
    .plan-detail-value {
        width: 100%;
        font-size: 0.875rem;
    }
    .credits-table-wrapper {
        border-radius: 8px;
    }
    .credits-table thead th,
    .credits-table tbody td {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
}

/* ── From: account/invoice-detail.blade.php ── */
.invoice-detail-page {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

.invoice-detail-container {
    max-width: 800px;
    width: 100%;
    background: #131525;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
}

.invoice-detail-brand {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brand-logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-mark {
    color: #e2e8f0;
}

.brand-accent {
    color: #1e3a5f;
}

.brand-tagline {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.invoice-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.invoice-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0;
}

.invoice-number {
    color: #94a3b8;
    font-size: 0.85rem;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}

.invoice-status-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.invoice-status-paid {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.invoice-status-pending {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.invoice-status-draft {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.invoice-status-void {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.invoice-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.invoice-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
}

.invoice-detail-label {
    color: #94a3b8;
    font-size: 0.9rem;
}

.invoice-detail-value {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
}

.invoice-detail-mono {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    color: #94a3b8;
}

.invoice-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.invoice-line-items {
    margin-bottom: 1.5rem;
}

.line-items-table {
    display: flex;
    flex-direction: column;
}

.line-items-header {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.10);
    margin-bottom: 0.25rem;
}

.line-items-header .line-col-desc,
.line-items-header .line-col-amount {
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.line-items-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.line-items-row:last-child {
    border-bottom: none;
}

.line-col-desc {
    color: #e2e8f0;
    font-size: 0.9rem;
    flex: 1;
    padding-right: 1rem;
}

.line-period {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.line-col-amount {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
    flex-shrink: 0;
}

.invoice-totals {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.invoice-discount {
    color: #4ade80;
}

.invoice-total-row {
    padding-top: 0.85rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.10);
}

.invoice-total-label {
    font-weight: 700;
    color: #e2e8f0;
}

.invoice-total-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e2e8f0;
}

.invoice-detail-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.invoice-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #1e3a5f;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.invoice-back-link:hover {
    text-decoration: underline;
}

.invoice-detail-note {
    color: #94a3b8;
    font-size: 0.8rem;
    font-style: italic;
}

@media (max-width: 640px) {
    .invoice-detail-container {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .invoice-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .invoice-detail-value {
        text-align: left;
    }

    .line-items-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .invoice-detail-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── From: account/invoices.blade.php ── */
.account-page {
    max-width: none;
    margin: 0;
}

.account-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

/* Flash messages */
.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flash-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.flash-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

/* Upcoming invoice card — reuse plan-card with accent */
.upcoming-card {
    border-color: rgba(30, 58, 95, 0.20);
    background: rgba(59, 130, 246, 0.05);
    margin-bottom: 2rem;
}

/* Plan card (reused from subscription page) */
.plan-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.plan-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-badge-upcoming {
    background: rgba(30, 58, 95, 0.10);
    color: #2a5298;
    border: 1px solid rgba(30, 58, 95, 0.25);
}

.plan-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.plan-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.plan-detail-label {
    color: var(--text-muted, #5A6078);
    font-size: 0.9rem;
}

.plan-detail-value {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.status-upcoming {
    color: #2a5298;
}

/* Invoice list — wider table-like layout for backend */
.invoice-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.invoice-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.invoice-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.invoice-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.invoice-date {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.invoice-description {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
}

.invoice-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.invoice-amount {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.status-paid {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.invoice-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent, #1e3a5f);
    text-decoration: none;
    flex-shrink: 0;
}

.invoice-pdf-link:hover {
    text-decoration: underline;
}

.pdf-icon {
    color: var(--accent, #1e3a5f);
}

/* Payment type badges */
.payment-type-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.payment-type-rfp {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.payment-type-sub {
    background: rgba(30, 58, 95, 0.10);
    color: #2a5298;
    border: 1px solid rgba(30, 58, 95, 0.25);
}

@media (max-width: 640px) {
    .account-page {
        padding: 0;
        overflow-x: hidden;
    }
    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .plan-card {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .plan-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }
    .plan-detail-label,
    .plan-detail-value {
        width: 100%;
        font-size: 0.875rem;
    }
    .invoice-card {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .invoice-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .invoice-meta {
        flex-direction: row;
        gap: 0.75rem;
    }
    .invoice-pdf-link {
        display: flex;
        width: 100%;
        min-height: 44px;
        justify-content: center;
        align-items: center;
        padding: 0.75rem;
        box-sizing: border-box;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.04);
    }
    .invoice-date {
        font-size: 0.875rem;
    }
    .invoice-amount {
        font-size: 1rem;
    }
}

/* ── From: account/payment-method-add.blade.php ── */
.account-page {
    max-width: 560px;
    margin: 0 auto;
}

.account-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* Flash messages */
.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flash-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

/* Card form */
.card-form-container {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 2rem;
}

.card-input-group {
    margin-bottom: 1.5rem;
}

.card-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted, #5A6078);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-element-container {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 8px;
    padding: 14px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.card-element-container:focus-within {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
}

.card-error {
    color: #f87171;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1.2em;
}

/* Buttons */
.card-form-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    min-width: 100px;
}

.action-btn-primary {
    background: var(--accent, #1e3a5f);
    color: #fff;
}

.action-btn-primary:hover {
    background: #2a5298;
    text-decoration: none;
}

.action-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.action-btn-secondary {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.action-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.10);
    text-decoration: none;
}

/* Spinner */
.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Return link */
.return-link-wrap {
    margin-top: 1.5rem;
}

.return-link {
    color: var(--text-muted, #5A6078);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.return-link:hover {
    color: var(--text);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .account-page {
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
    }
    .card-form-container {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .card-element-container {
        padding: 12px 12px;
        width: 100%;
        box-sizing: border-box;
    }
    .card-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .card-form-actions .action-btn {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        box-sizing: border-box;
    }
    .return-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 0;
    }
}

/* ── From: account/payment-method.blade.php ── */
.account-page {
    max-width: none;
    margin: 0;
}

.account-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* Flash messages */
.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flash-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.flash-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.flash-info {
    background: rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.20);
    color: #2a5298;
}

/* Top actions */
.pm-actions-top {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* Payment method list */
.pm-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Payment method card */
.pm-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pm-card-default {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.03);
}

.pm-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pm-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Brand SVG icons */
.pm-brand-svg {
    width: 36px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 3px;
}

.pm-brand-last4 {
    font-family: SFMono-Regular, Consolas, monospace;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.02em;
}

.pm-brand-expires {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    margin-left: 0.25rem;
}

.pm-default-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pm-card-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-top: 0.25rem;
}

/* Buttons */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    width: fit-content;
}

.action-btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.action-btn-primary {
    background: var(--accent, #1e3a5f);
    color: #fff;
}

.action-btn-primary:hover {
    background: #2a5298;
    text-decoration: none;
}

.action-btn-secondary {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.action-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.10);
    text-decoration: none;
}

.action-btn-danger {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.action-btn-danger:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* Empty state */
.pm-empty {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.pm-empty-text {
    color: var(--text-muted, #5A6078);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .account-page {
        padding: 0;
        overflow-x: hidden;
    }
    .pm-actions-top {
        flex-direction: column;
    }
    .pm-actions-top .action-btn {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        box-sizing: border-box;
    }
    .pm-card {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .pm-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .pm-brand {
        flex-wrap: wrap;
        flex-direction: row;
    }
    .pm-brand-last4,
    .pm-brand-expires {
        font-size: 0.875rem;
    }
    .pm-card-actions {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    .pm-card-actions .action-btn,
    .pm-action-form .action-btn {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        box-sizing: border-box;
    }
    .pm-card-actions .pm-action-form {
        width: 100%;
        display: block;
    }
}

/* ── From: account/profile.blade.php ── */
.profile-page { max-width: none; margin: 0; }
.page-title { font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; }
.flash-message { padding: 0.75rem 1rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: 0.9rem; }
.flash-success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25); color: #4ade80; }
.profile-card { background: #ffffff; border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.profile-field { display: flex; flex-direction: column; gap: 0.35rem; }
.profile-field:nth-child(3) { grid-column: 1 / -1; }
.profile-label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.profile-input { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 0.6rem 0.9rem; font-size: 0.9rem; color: var(--text); transition: border-color 0.2s; }
.profile-input:focus { outline: none; border-color: var(--accent); }
.profile-input-readonly { opacity: 0.5; cursor: not-allowed; }
.profile-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; }
.profile-actions { margin-top: 0.5rem; }
.action-btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.6rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; text-decoration: none; border: none; cursor: pointer; }
.action-btn-primary { background: var(--accent); color: #fff; }
.action-btn-primary:hover { background: #2a5298; }
@media (max-width: 767px) { .profile-card { grid-template-columns: 1fr; } }

/* ── From: account/receipt.blade.php ── */
.receipt-page {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

.receipt-container {
    max-width: 800px;
    width: 100%;
    background: #131525;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
}

.receipt-brand {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brand-logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-mark {
    color: #e2e8f0;
}

.brand-accent {
    color: #1e3a5f;
}

.brand-tagline {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.receipt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.receipt-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0;
}

.receipt-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.receipt-badge-paid {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.receipt-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.receipt-row:last-child {
    border-bottom: none;
}

.receipt-label {
    color: #94a3b8;
    font-size: 0.9rem;
}

.receipt-value {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
}

.receipt-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e2e8f0;
}

.receipt-mono {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #94a3b8;
}

.receipt-card-section {
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.receipt-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.receipt-card-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-brand {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    background: rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.20);
    border-radius: 6px;
    color: #2a5298;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-last4 {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    letter-spacing: 0.1em;
}

.receipt-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.receipt-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #1e3a5f;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.receipt-back-link:hover {
    text-decoration: underline;
}

.receipt-note {
    color: #94a3b8;
    font-size: 0.8rem;
    font-style: italic;
}

@media (max-width: 640px) {
    .receipt-container {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .receipt-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .receipt-value {
        text-align: left;
    }

    .receipt-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── From: account/subscription.blade.php ── */
.account-page {
    max-width: none;
    margin: 0;
}

.account-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* Flash messages */
.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flash-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.flash-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

/* Payment failure warning card */
.payment-failure-warning {
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.payment-failure-warning-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.payment-failure-warning-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1.4;
}

.payment-failure-warning-text {
    color: #fbbf24;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
}

.payment-failure-warning-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    transition: background 0.2s, border-color 0.2s;
}

.payment-failure-warning-btn:hover {
    background: rgba(251, 191, 36, 0.25);
    text-decoration: none;
    color: #fcd34d;
}

/* 2-column subscription grid */
.subscription-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.subscription-plan-col {
    /* takes the plan card */
}

.subscription-actions-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Action cards in grid column */
.subscription-actions-col .action-card {
    margin-bottom: 0;
}

.plan-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 0;
}

.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.plan-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-badge-unlimited {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.plan-badge-payper {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-muted, #5A6078);
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.plan-badge-canceled {
    background: rgba(251, 146, 60, 0.15);
    color: #fb923c;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.plan-badge-canceling {
    background: rgba(251, 146, 60, 0.15);
    color: #fb923c;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.plan-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.plan-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.plan-detail-label {
    color: var(--text-muted, #5A6078);
    font-size: 0.9rem;
}

.plan-detail-value {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-status-active {
    color: #4ade80;
}

.plan-status-canceled {
    color: #fb923c;
}

.plan-status-canceling {
    color: #fb923c;
}

.plan-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.5;
}

/* Cancellation countdown */
.countdown-container {
    background: rgba(251, 146, 60, 0.08);
    border: 1px solid rgba(251, 146, 60, 0.25);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.countdown-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 0.75rem;
}

.period-progress {
    width: 100%;
    height: 4px;
    background: var(--border, #333);
    border-radius: 2px;
    margin-top: 8px;
}

.period-progress-bar {
    height: 100%;
    background: var(--accent, #f59e0b);
    border-radius: 2px;
    transition: width 0.3s;
}

/* Action cards */
.action-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-card-upgrade {
    border-color: rgba(30, 58, 95, 0.20);
    background: rgba(59, 130, 246, 0.05);
}

.action-card-danger {
    border-color: rgba(239, 68, 68, 0.15);
}

.action-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

.action-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.5;
}

/* Buttons */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    width: fit-content;
}

.action-btn-primary {
    background: var(--accent, #1e3a5f);
    color: #fff;
}

.action-btn-primary:hover {
    background: #2a5298;
    text-decoration: none;
}

.action-btn-secondary {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.action-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.10);
    text-decoration: none;
}

.action-btn-danger {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.action-btn-danger:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 2rem;
    max-width: 440px;
    width: 90%;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.modal-text {
    font-size: 0.9rem;
    color: var(--text-muted, #3a4560);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

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

@media (max-width: 640px) {
    .account-page {
        padding: 0;
        overflow-x: hidden;
    }
    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .plan-card {
        padding: 1rem;
    }
    .plan-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }
    .plan-detail-label,
    .plan-detail-value {
        width: 100%;
        font-size: 0.875rem;
    }
    .payment-failure-warning {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .payment-failure-warning-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    .payment-failure-warning-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }
    .modal-overlay {
        padding: 0;
    }
    .modal-content {
        width: 95vw;
        max-width: 95vw;
        padding: 16px;
        margin: 0;
        max-height: 90vh;
        overflow-y: auto;
        box-sizing: border-box;
    }
    .modal-actions {
        flex-direction: column;
    }
    .modal-actions .action-btn {
        width: 100%;
        min-height: 44px;
    }
    .action-card {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .action-btn {
        min-height: 44px;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }
}

/* ── From: test/room-selector.blade.php ── */
.room-selector-test {
    max-width: 600px;
    margin: 0 auto;
}

.room-selector-test h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text, #1A1D2E);
}

.room-selectors-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .room-selectors-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.validation-msg {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: none;
}

.validation-msg.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.validation-msg.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.result-display {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.85rem;
    color: #3a4560;
}

/* ── From: dashboard/cancelled.blade.php ── */
.cancelled-page { max-width: none; margin: 0; }
.page-title { font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; }
.empty-state { background: #ffffff; border: 1px solid var(--border); border-radius: 12px; padding: 2rem; text-align: center; color: var(--text-muted); }

/* Card grid */
.rfp-cards {
    display: grid;
    gap: 1rem;
}

/* Card */
.rfp-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s;
}

.rfp-card:hover {
    border-color: rgba(0, 0, 0, 0.08);
}

.rfp-card-cancelled { border-color: rgba(239, 68, 68, 0.2); opacity: 0.8; }
.rfp-card-cancelled:hover { border-color: rgba(239, 68, 68, 0.35); opacity: 1; }

/* Card header: location + badges */
.rfp-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.rfp-location {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}

.rfp-card-header-badges {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

/* Status badges */
.rfp-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.rfp-badge-cancelled {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Card body */
.rfp-card-body {
    margin-bottom: 0.5rem;
}

.rfp-detail-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem 1.5rem;
}

.rfp-detail {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.rfp-detail-wide {
    margin-top: 0.5rem;
}

.rfp-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.rfp-detail-value {
    font-size: 0.9rem;
    color: var(--text);
}

/* Card footer */
.rfp-card-footer {
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rfp-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── From: dashboard/index.blade.php ── */
.dashboard {
    max-width: none;
    margin: 0;
}

.dashboard-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

/* Flash message */
.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flash-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

/* Two-column dashboard layout */
.dashboard-main-layout {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.dashboard-side {
    flex: 0 0 35%;
    max-width: 35%;
}

.dashboard-map-area {
    flex: 0 0 60%;
    max-width: 60%;
    margin-right: 5%;
}

.side-section {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.side-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.side-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.side-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    background: var(--accent);
    color: #fff;
}

.side-item {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.side-item.side-item-active {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.6rem;
}

.side-item-blink {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    margin-top: 6px;
    animation: blink-green 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
}

@keyframes blink-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.side-item-content {
    display: flex;
    flex-direction: column;
}

.side-item:last-of-type {
    border-bottom: none;
}

.side-item-city {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.side-item-dates {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.side-empty {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.side-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.side-link:hover {
    text-decoration: underline;
}

.side-item-link {
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
    border-radius: 6px;
    margin: 0 -0.5rem;
    padding: 0.5rem 0.5rem;
}

.side-item-link:hover {
    background: rgba(30, 58, 95, 0.06);
}

.side-item-link .side-item-city {
    color: var(--accent, #2a5298);
}

@media (max-width: 900px) {
    .dashboard-main-layout {
        flex-direction: column;
    }
    .dashboard-side,
    .dashboard-map-area {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .dashboard-map-area {
        order: -1;
    }
}

/* US Map */
.dashboard-map {
    margin-bottom: 2rem;
    position: relative;
}

#us-map {
    border: 1px solid var(--border);
}

.map-legend {
    display: flex;
    gap: 1.25rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.map-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.map-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Pending Payment section */
.pending-payment-section {
    margin-bottom: 2rem;
}

.pending-payment-hint {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.rfp-card-pending-payment {
    border-color: rgba(250, 204, 21, 0.25);
}

.rfp-card-pending-payment:hover {
    border-color: rgba(250, 204, 21, 0.45);
}

.rfp-badge-pending_payment {
    background: rgba(250, 204, 21, 0.14);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
}

/* Pending section (paid, awaiting matching) */
.pending-section {
    margin-bottom: 2rem;
}

.pending-hint {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.rfp-card-pending {
    border-color: rgba(234, 179, 8, 0.25);
}

.rfp-card-pending:hover {
    border-color: rgba(234, 179, 8, 0.45);
}

.section-heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.rfp-action-edit {
    background: transparent;
    border: 1px solid var(--accent, #1e3a5f);
    color: var(--accent, #1e3a5f);
}

.rfp-action-edit:hover {
    background: rgba(30, 58, 95, 0.08);
    text-decoration: none;
}

.rfp-card-footer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.rfp-card-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.rfp-action-btn {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s, color 0.2s;
}

.rfp-action-pay {
    background: var(--accent, #1e3a5f);
    color: #fff;
}

.rfp-action-pay:hover {
    background: #2a5298;
    text-decoration: none;
}

.rfp-action-view {
    background: transparent;
    border: 1px solid rgba(30, 58, 95, 0.25);
    color: #2a5298;
}

.rfp-action-view:hover {
    background: rgba(30, 58, 95, 0.08);
    text-decoration: none;
}

.rfp-action-cancel {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.rfp-action-cancel:hover {
    background: rgba(239, 68, 68, 0.12);
}

/* ── From: dashboard/index.blade.php ── */
.dark-popup .leaflet-popup-content-wrapper {
    background: #1a1d2e;
    color: #1A1D2E;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.dark-popup .leaflet-popup-tip {
    background: #1a1d2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-top: none;
    border-right: none;
}
.dark-popup .leaflet-popup-close-button {
    color: rgba(232,234,242,0.5) !important;
}
.dark-popup .leaflet-popup-close-button:hover {
    color: #1A1D2E !important;
}

/* ── From: dashboard/requests.blade.php ── */
.requests-page { max-width: none; margin: 0; }
.page-title { font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; }
.pending-payment-section { margin-bottom: 2rem; }
.pending-payment-hint { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.rfp-card-pending-payment { border-color: rgba(250, 204, 21, 0.25); }
.rfp-card-pending-payment:hover { border-color: rgba(250, 204, 21, 0.45); }
.rfp-badge-pending_payment { background: rgba(250, 204, 21, 0.14); border: 1px solid rgba(250, 204, 21, 0.3); color: #facc15; }
.pending-section { margin-bottom: 2rem; }
.pending-hint { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.rfp-card-pending { border-color: rgba(234, 179, 8, 0.25); }
.rfp-card-pending:hover { border-color: rgba(234, 179, 8, 0.45); }

/* Card grid */
.rfp-cards {
    display: grid;
    gap: 1rem;
}

/* Card */
.rfp-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s;
}

.rfp-card:hover {
    border-color: rgba(0, 0, 0, 0.08);
}

/* Card header: location + badges */
.rfp-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.rfp-location {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}

.rfp-card-header-badges {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

/* Status badges */
.rfp-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.rfp-badge-winner {
    background: rgba(250, 204, 21, 0.14);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
}

.rfp-badge-accepted {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.rfp-badge-submitted {
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(30, 58, 95, 0.25);
    color: #2a5298;
}

.rfp-badge-pending {
    background: rgba(250, 204, 21, 0.14);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
}

.rfp-badge-responses {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.rfp-badge-cancelled {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Card body */
.rfp-card-body {
    margin-bottom: 0.5rem;
}

.rfp-detail-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem 1.5rem;
}

.rfp-detail {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.rfp-detail-wide {
    margin-top: 0.5rem;
}

.rfp-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.rfp-detail-value {
    font-size: 0.9rem;
    color: var(--text);
}

.rfp-detail-winner {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.rfp-detail-winner-name {
    color: #4ade80;
    font-weight: 600;
}

/* Card footer */
.rfp-card-footer {
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rfp-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.rfp-view-responses-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
    text-decoration: none;
    transition: color 0.2s;
}

.rfp-view-responses-link:hover {
    color: #22c55e;
    text-decoration: underline;
}

.rfp-action-edit { background: transparent; border: 1px solid var(--accent, #1e3a5f); color: var(--accent, #1e3a5f); }
.rfp-action-edit:hover { background: rgba(30, 58, 95, 0.08); text-decoration: none; }
.rfp-card-footer-actions { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.rfp-card-actions { display: flex; gap: 0.5rem; align-items: center; }
.rfp-action-btn { display: inline-block; padding: 0.35rem 0.9rem; border-radius: 6px; font-size: 0.8rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: background 0.2s, color 0.2s; }
.rfp-action-pay { background: var(--accent, #1e3a5f); color: #fff; }
.rfp-action-pay:hover { background: #2a5298; text-decoration: none; }
.rfp-action-view { background: transparent; border: 1px solid rgba(30, 58, 95, 0.25); color: #2a5298; }
.rfp-action-view:hover { background: rgba(30, 58, 95, 0.08); text-decoration: none; }
.rfp-action-cancel { background: transparent; border: 1px solid rgba(239, 68, 68, 0.3); color: #f87171; }
.rfp-action-cancel:hover { background: rgba(239, 68, 68, 0.12); }

.cancelled-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.cancelled-link:hover {
    color: #f87171;
    text-decoration: underline;
}

/* ── From: dashboard/trips.blade.php ── */
.trips-page { max-width: none; margin: 0; }
.page-title { font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; }
.empty-state { background: #ffffff; border: 1px solid var(--border); border-radius: 12px; padding: 2rem; text-align: center; color: var(--text-muted); }

/* Card grid */
.rfp-cards {
    display: grid;
    gap: 1rem;
}

/* Card */
.rfp-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s;
}

.rfp-card:hover {
    border-color: rgba(0, 0, 0, 0.08);
}

/* Card header: location + badges */
.rfp-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.rfp-location {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}

.rfp-card-header-badges {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

/* Status badges */
.rfp-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.rfp-badge-winner {
    background: rgba(250, 204, 21, 0.14);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
}

.rfp-badge-accepted {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.rfp-badge-submitted {
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(30, 58, 95, 0.25);
    color: #2a5298;
}

.rfp-badge-pending {
    background: rgba(250, 204, 21, 0.14);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
}

.rfp-badge-responses {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.rfp-badge-cancelled {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Card body */
.rfp-card-body {
    margin-bottom: 0.5rem;
}

.rfp-detail-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem 1.5rem;
}

.rfp-detail {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.rfp-detail-wide {
    margin-top: 0.5rem;
}

.rfp-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.rfp-detail-value {
    font-size: 0.9rem;
    color: var(--text);
}

.rfp-detail-winner {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.rfp-detail-winner-name {
    color: #4ade80;
    font-weight: 600;
}

/* Card footer */
.rfp-card-footer {
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rfp-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.rfp-view-responses-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
    text-decoration: none;
    transition: color 0.2s;
}

.rfp-view-responses-link:hover {
    color: #22c55e;
    text-decoration: underline;
}

.rfp-card-footer-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rfp-manage-rooming-list-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e3a5f;
    text-decoration: none;
    transition: color 0.2s;
}

.rfp-manage-rooming-list-link:hover {
    color: #2a5298;
    text-decoration: underline;
}

.rfp-create-rooming-list-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e3a5f;
    background: none;
    border: 1px solid #1e3a5f;
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    cursor: pointer;
    transition: background 0.2s;
}

.rfp-create-rooming-list-btn:hover {
    background: rgba(30, 58, 95, 0.08);
}

/* ── From: dashboard/partials/rfp-list.blade.php ── */
/* RFP section */
.rfp-section {
    margin-bottom: 2rem;
}

.rfp-section-heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.rfp-empty {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.rfp-empty p {
    margin: 0;
}

/* Card grid */
.rfp-cards {
    display: grid;
    gap: 1rem;
}

/* Card */
.rfp-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s;
}

.rfp-card:hover {
    border-color: rgba(0, 0, 0, 0.08);
}

/* Card header: location + badges */
.rfp-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.rfp-location {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}

.rfp-card-header-badges {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

/* Status badges */
.rfp-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.rfp-badge-pending {
    background: rgba(250, 204, 21, 0.14);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
}

.rfp-badge-submitted {
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(30, 58, 95, 0.25);
    color: #2a5298;
}

.rfp-badge-accepted {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.rfp-badge-winner {
    background: rgba(250, 204, 21, 0.14);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
}

.rfp-detail-winner {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.rfp-detail-winner-name {
    color: #4ade80;
    font-weight: 600;
}

.rfp-badge-cancelled {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.rfp-badge-paid {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.rfp-badge-responses {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

/* Card body */
.rfp-card-body {
    margin-bottom: 0.5rem;
}

.rfp-detail-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem 1.5rem;
}

.rfp-detail {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.rfp-detail-wide {
    margin-top: 0.5rem;
}

.rfp-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.rfp-detail-value {
    font-size: 0.9rem;
    color: var(--text);
}

/* Card footer */
.rfp-card-footer {
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
}

.rfp-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.rfp-view-details-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent, #1e3a5f);
    text-decoration: none;
    transition: color 0.2s;
}

.rfp-view-details-link:hover {
    color: #2a5298;
    text-decoration: underline;
}

.rfp-view-responses-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
    text-decoration: none;
    transition: color 0.2s;
}

.rfp-view-responses-link:hover {
    color: #22c55e;
    text-decoration: underline;
}

.rfp-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Card actions */
.rfp-card-footer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rfp-card-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rfp-action-btn {
    display: inline-block;
    padding: 0.35rem 0.875rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.15s ease;
}

.rfp-action-view {
    background: rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.25);
    color: #2a5298;
}

.rfp-action-view:hover {
    background: rgba(30, 58, 95, 0.15);
}

.rfp-action-cancel {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.rfp-action-cancel:hover {
    background: rgba(239, 68, 68, 0.12);
}

/* ── From: reservation/create.blade.php ── */
/* ── NYP Page Layout ──────────────────────────── */
.nyp-page {
    max-width: 680px;
    margin: 0 auto;
}

.nyp-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.2s;
}

.nyp-back-link:hover {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
}

.nyp-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.nyp-subtitle {
    font-size: 1rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ── Summary Card ──────────────────────────────── */
.nyp-summary-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.nyp-summary-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #5A6078);
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

.nyp-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
}

.nyp-summary-field {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.nyp-summary-field-wide {
    grid-column: 1 / -1;
}

.nyp-summary-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #8892A6);
}

.nyp-summary-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

/* ── Form Card ────────────────────────────────── */
.nyp-form-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.nyp-form-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #5A6078);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

.nyp-field {
    margin-bottom: 1.25rem;
}

.nyp-field-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3a4560;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.nyp-field-input {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--bg, #F8F9FC);
    color: var(--text, #1A1D2E);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.nyp-field-input:focus {
    border-color: var(--accent, #1e3a5f);
}

.nyp-field-input::placeholder {
    color: var(--text-muted, #8892A6);
}

.nyp-field-input-readonly {
    opacity: 0.7;
    cursor: default;
}

.nyp-price-input-wrapper {
    position: relative;
}

.nyp-price-prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted, #5A6078);
}

.nyp-price-input {
    padding-left: 1.75rem;
}

textarea.nyp-field-input {
    resize: vertical;
    min-height: 80px;
}

/* ── Fee Display ──────────────────────────────── */
.nyp-fee-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.06));
    margin-top: 0.5rem;
}

.nyp-fee-label {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
}

.nyp-fee-value {
    font-size: 0.9rem;
    font-weight: 600;
}

.nyp-fee-free {
    color: #4ade80;
}

.nyp-fee-paid {
    color: var(--text, #1A1D2E);
}

/* ── Hotel Count ──────────────────────────────── */
.nyp-hotel-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(30, 58, 95, 0.06);
    border: 1px solid rgba(30, 58, 95, 0.10);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #2a5298;
}

.nyp-hotel-count-icon {
    flex-shrink: 0;
}

.nyp-hotel-count strong {
    color: var(--accent, #1e3a5f);
}

/* ── Submit Button ──────────────────────────── */
.nyp-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    border: 2px solid var(--accent-2, #1a2d4a);
    border-radius: 10px;
    cursor: pointer;
    background: var(--accent-2, #1a2d4a);
    color: #fff;
    transition: all 0.2s;
}

.nyp-submit-btn:hover {
    background: #7c3aed;
    border-color: #7c3aed;
}

.nyp-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Error Messages ─────────────────────────── */
.nyp-errors {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    color: #f87171;
    font-size: 0.85rem;
}

.nyp-errors ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ── Flash Messages ─────────────────────────── */
.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.flash-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.flash-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

/* ── Mobile ─────────────────────────────────── */
@media (max-width: 640px) {
    .nyp-page {
        max-width: 100%;
    }

    .nyp-title {
        font-size: 1.5rem;
    }

    .nyp-summary-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .nyp-summary-field-wide {
        grid-column: 1;
    }
}

/* ── From: reservation/declined.blade.php ── */
.declined-page {
    max-width: 560px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
}

.declined-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.declined-icon svg {
    width: 36px;
    height: 36px;
    color: #ef4444;
}

.declined-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.declined-text {
    font-size: 1.05rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.declined-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-try-higher {
    padding: 0.85rem 2rem;
    background: var(--accent-2, #1a2d4a);
    border: 2px solid var(--accent-2, #1a2d4a);
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-try-higher:hover {
    background: #7c3aed;
    border-color: #7c3aed;
}

.btn-browse-agoda {
    padding: 0.85rem 2rem;
    background: transparent;
    border: 2px solid var(--accent, #1e3a5f);
    border-radius: 8px;
    color: var(--accent, #1e3a5f);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-browse-agoda:hover {
    background: var(--accent, #1e3a5f);
    color: #fff;
}

/* ── Mobile Responsive ─────────────────────── */
@media (max-width: 640px) {
    .declined-page {
        padding: 2.5rem 1rem;
    }

    .declined-title {
        font-size: 1.5rem;
    }

    .declined-actions {
        flex-direction: column;
    }

    .btn-try-higher,
    .btn-browse-agoda {
        text-align: center;
    }
}

/* ── From: reservation/index.blade.php ── */
/* ── Reservations Page ────────────────────────── */
.res-page {
    max-width: 960px;
    margin: 0 auto;
}

.res-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.2s;
}

.res-back-link:hover {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
}

.res-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

/* ── Filter Tabs ──────────────────────────────── */
.res-filter-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.res-filter-tab {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted, #5A6078);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    border: 1px solid transparent;
    background: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.res-filter-tab:hover {
    color: var(--text, #1A1D2E);
    background: rgba(0, 0, 0, 0.04);
    text-decoration: none;
}

.res-filter-tab.active {
    color: var(--accent, #1e3a5f);
    border-color: var(--accent, #1e3a5f);
    background: rgba(30, 58, 95, 0.06);
}

/* ── Reservation List ─────────────────────────── */
.res-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.res-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    transition: border-color 0.2s;
    text-decoration: none;
    color: inherit;
}

.res-card:hover {
    border-color: rgba(30, 58, 95, 0.25);
    text-decoration: none;
}

.res-card-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.res-card-destination {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.res-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted, #5A6078);
}

.res-card-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.res-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
}

.res-card-matches {
    font-size: 0.8rem;
    color: var(--text-muted, #5A6078);
    white-space: nowrap;
}

/* ── Status Badges ────────────────────────────── */
.res-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.res-status-pending_payment {
    background: rgba(250, 204, 21, 0.14);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
}

.res-status-pending {
    background: rgba(234, 179, 8, 0.14);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #fbbf24;
}

.res-status-submitted {
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(30, 58, 95, 0.25);
    color: #2a5298;
}

.res-status-accepted {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.res-status-declined {
    background: rgba(239, 68, 68, 0.14);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* ── Empty State ──────────────────────────────── */
.res-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.res-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.res-empty h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
}

.res-empty p {
    color: var(--text-muted, #5A6078);
    font-size: 0.9rem;
    max-width: 420px;
    margin: 0 auto 1.25rem;
}

.res-empty-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--accent-2, #1a2d4a);
    border-radius: 8px;
    background: transparent;
    color: var(--accent-2, #1a2d4a);
    text-decoration: none;
    transition: all 0.2s;
}

.res-empty-link:hover {
    background: rgba(26, 45, 74, 0.08);
    text-decoration: none;
}

/* ── Flash Messages ─────────────────────────── */
.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.flash-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

/* ── Pagination ──────────────────────────────── */
.res-pagination {
    margin-top: 1.5rem;
    text-align: center;
}

/* ── Mobile Responsive ─────────────────────────── */
@media (max-width: 768px) {
    .res-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .res-card-right {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 640px) {
    .res-page {
        max-width: 100%;
    }

    .res-title {
        font-size: 1.5rem;
    }

    .res-filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .res-filter-tab {
        flex-shrink: 0;
    }
}

/* ── From: reservation/loading.blade.php ── */
.loading-page {
    max-width: 560px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
}

.loading-spinner-container {
    margin-bottom: 2rem;
}

.loading-spinner {
    width: 56px;
    height: 56px;
    border: 4px solid var(--border, rgba(0, 0, 0, 0.08));
    border-top-color: var(--accent-2, #1a2d4a);
    border-radius: 50%;
    animation: loading-spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes loading-spin {
    to { transform: rotate(360deg); }
}

.loading-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.loading-subtitle {
    font-size: 1rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.loading-details {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.loading-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.loading-detail-label {
    color: var(--text-muted, #5A6078);
}

.loading-detail-value {
    color: var(--text, #1A1D2E);
    font-weight: 600;
}

.loading-status {
    font-size: 0.85rem;
    color: var(--text-muted, #8892A6);
    margin-top: 1.5rem;
}

/* ── Declined State ────────────────────────────── */
.loading-declined {
    display: none;
}

.loading-declined.visible {
    display: block;
}

.loading-declined-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.loading-declined-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.75rem;
}

.loading-declined-text {
    font-size: 1rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.loading-declined-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-try-higher {
    padding: 0.7rem 1.5rem;
    background: var(--accent-2, #1a2d4a);
    border: 2px solid var(--accent-2, #1a2d4a);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-try-higher:hover {
    background: #7c3aed;
    border-color: #7c3aed;
}

.btn-browse-agoda {
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 2px solid var(--accent, #1e3a5f);
    border-radius: 8px;
    color: var(--accent, #1e3a5f);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-browse-agoda:hover {
    background: var(--accent, #1e3a5f);
    color: #fff;
}

/* ── Mobile Responsive ─────────────────────── */
@media (max-width: 640px) {
    .loading-page {
        padding: 2.5rem 1rem;
    }

    .loading-title {
        font-size: 1.4rem;
    }

    .loading-declined-actions {
        flex-direction: column;
    }

    .btn-try-higher,
    .btn-browse-agoda {
        text-align: center;
    }
}

/* ── From: reservation/payment.blade.php ── */
/* ── Payment Page ─────────────────────────────── */
.pay-page {
    max-width: 560px;
    margin: 0 auto;
}

.pay-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.2s;
}

.pay-back-link:hover {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
}

.pay-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.pay-subtitle {
    color: var(--text-muted, #5A6078);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.pay-subtitle strong {
    color: var(--text, #1A1D2E);
}

/* ── Summary Banner ──────────────────────────── */
.pay-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.15rem;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    margin-bottom: 1.75rem;
}

.pay-summary-icon {
    flex-shrink: 0;
    color: var(--accent, #1e3a5f);
}

.pay-summary-text {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
}

.pay-summary-text strong {
    color: var(--text, #1A1D2E);
}

/* ── Payment Element Container ────────────────── */
.pay-element-container {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    min-height: 200px;
}

#payment-element {
    min-height: 180px;
}

/* ── Loading State ──────────────────────────── */
.pay-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    color: var(--text-muted, #5A6078);
    font-size: 0.9rem;
    gap: 1rem;
}

.pay-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(0, 0, 0, 0.08);
    border-top-color: var(--accent, #1e3a5f);
    border-radius: 50%;
    animation: pay-spin 0.8s linear infinite;
}

@keyframes pay-spin {
    to { transform: rotate(360deg); }
}

/* ── Submit Button ──────────────────────────── */
.pay-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: var(--accent, #1e3a5f);
    color: #fff;
    transition: all 0.2s;
    margin-bottom: 1.5rem;
}

.pay-submit-btn:hover {
    background: #2a5298;
}

.pay-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pay-submit-btn.btn-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ── Error / Message ──────────────────────── */
.pay-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: none;
}

.pay-message-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.pay-message-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

/* ── Security Note ──────────────────────────── */
.pay-secure-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted, #8892A6);
    margin-top: 0.5rem;
}

/* ── Mobile ──────────────────────────────────── */
@media (max-width: 640px) {
    .pay-page {
        max-width: 100%;
    }

    .pay-title {
        font-size: 1.5rem;
    }

    .pay-element-container {
        padding: 1rem;
    }
}

/* ── From: reservation/price.blade.php ── */
.price-page {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.price-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.2s;
}

.price-back-link:hover {
    color: var(--accent-2, #1a2d4a);
    text-decoration: underline;
}

.price-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.price-subtitle {
    font-size: 1rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ── Summary Card ──────────────────────────────── */
.price-summary-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
}

.price-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.04));
}

.price-summary-row:last-child {
    border-bottom: none;
}

.price-summary-label {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
}

.price-summary-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

/* ── Price Input Card ─────────────────────────── */
.price-input-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    margin-bottom: 1.5rem;
}

.price-input-card label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3a4560;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.price-input-wrapper {
    position: relative;
}

.price-input-prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted, #5A6078);
    pointer-events: none;
}

.price-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2rem;
    background: var(--bg, #F8F9FC);
    color: var(--text, #1A1D2E);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    outline: none;
    transition: border-color 0.2s;
}

.price-input:focus {
    border-color: var(--accent-2, #1a2d4a);
}

.price-input::placeholder {
    color: var(--text-muted, #8892A6);
    font-weight: 400;
}

.price-input-error {
    border-color: #ef4444 !important;
}

.price-error-msg {
    color: #fca5a5;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.price-error-msg.visible {
    display: block;
}

.price-minimum-note {
    font-size: 0.8rem;
    color: var(--text-muted, #8892A6);
    margin-top: 0.5rem;
}

/* ── Fee Notice ──────────────────────────────── */
.price-fee-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(26, 45, 74, 0.06);
    border: 1px solid rgba(26, 45, 74, 0.15);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
}

.price-fee-notice--free {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
}

.price-fee-notice svg {
    flex-shrink: 0;
}

/* ── Submit Button ──────────────────────────── */
.price-submit-btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    border: 2px solid var(--accent-2, #1a2d4a);
    border-radius: 8px;
    cursor: pointer;
    background: var(--accent-2, #1a2d4a);
    color: #fff;
    transition: all 0.2s;
}

.price-submit-btn:hover {
    background: #7c3aed;
    border-color: #7c3aed;
}

.price-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Mobile Responsive ─────────────────────── */
@media (max-width: 640px) {
    .price-page {
        padding: 1.5rem 1rem;
    }

    .price-title {
        font-size: 1.5rem;
    }

    .price-input {
        font-size: 1.1rem;
    }
}

/* ── From: reservation/results.blade.php ── */
/* ── Results Page Layout ─────────────────────── */
.results-page {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Sort Bar ─────────────────────────────────── */
.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.sort-bar-count {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
}

.sort-bar-count span {
    color: var(--accent, #1e3a5f);
}

.sort-bar-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-bar-label {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
}

.sort-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted, #5A6078);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
    background: none;
    text-decoration: none;
}

.sort-link:hover {
    color: var(--text, #1A1D2E);
    background: rgba(0, 0, 0, 0.04);
}

.sort-link.active {
    color: var(--accent, #1e3a5f);
    border-color: var(--accent, #1e3a5f);
    background: rgba(30, 58, 95, 0.06);
}

/* ── Search Summary ──────────────────────────── */
.search-summary {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 1.75rem;
}

.search-summary strong {
    color: var(--text, #1A1D2E);
}

/* ── Hotel Card List ──────────────────────────── */
.hotel-results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Hotel Card ───────────────────────────────── */
.hotel-result-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    transition: border-color 0.2s;
}

.hotel-result-card:hover {
    border-color: rgba(30, 58, 95, 0.25);
}

/* ── Hotel Photo ──────────────────────────────── */
.hotel-result-photo {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg, #F8F9FC);
}

.hotel-result-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Hotel Info ────────────────────────────────── */
.hotel-result-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.hotel-result-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.hotel-result-stars {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-bottom: 0.35rem;
}

.hotel-result-stars .star {
    color: #facc15;
    font-size: 0.85rem;
}

.hotel-result-stars .star.empty {
    color: rgba(0, 0, 0, 0.10);
}

.hotel-result-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.hotel-result-distance {
    color: var(--text-muted, #5A6078);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hotel-result-distance svg {
    flex-shrink: 0;
}

.hotel-result-review {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-score-excellent {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.review-score-good {
    background: rgba(30, 58, 95, 0.10);
    color: #2a5298;
}

.review-score-average {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
}

.review-score-poor {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.hotel-result-amenities {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.amenity-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(30, 58, 95, 0.06);
    color: var(--text-muted, #5A6078);
    border: 1px solid rgba(30, 58, 95, 0.08);
}

/* ── Price Section ─────────────────────────────── */
.hotel-result-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
    min-width: 180px;
}

.price-section {
    text-align: right;
}

.price-daily {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    letter-spacing: -0.02em;
}

.price-daily .price-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted, #5A6078);
}

.price-crossed-out {
    font-size: 0.85rem;
    color: var(--text-muted, #8892A6);
    text-decoration: line-through;
    margin-bottom: 0.15rem;
}

.price-discount-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    margin-bottom: 0.35rem;
}

/* ── Buttons ──────────────────────────────────── */
.btn-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    background: var(--accent, #1e3a5f);
    color: #fff;
}

.btn-book-now:hover {
    background: #2a5298;
    text-decoration: none;
}

.btn-name-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--accent-2, #1a2d4a);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    background: transparent;
    color: var(--accent-2, #1a2d4a);
}

.btn-name-price:hover {
    background: rgba(26, 45, 74, 0.08);
    text-decoration: none;
}

/* ── No Results ───────────────────────────────── */
.no-results {
    text-align: center;
    padding: 4rem 1rem;
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.no-results h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.75rem;
}

.no-results p {
    color: var(--text-muted, #5A6078);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

/* ── Mobile Responsive ─────────────────────────── */
@media (max-width: 768px) {
    .hotel-result-card {
        flex-direction: column;
    }

    .hotel-result-photo {
        width: 100%;
        height: 180px;
    }

    .hotel-result-actions {
        align-items: stretch;
        min-width: 0;
    }

    .price-section {
        text-align: left;
    }

    .sort-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .sort-bar-options {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hotel-result-photo {
        height: 150px;
    }

    .sort-bar-count {
        font-size: 1.1rem;
    }
}

/* ── From: reservation/search.blade.php ── */
/* ── Hero Section ──────────────────────────────── */
.hero-section {
    display: flex;
    align-items: stretch;
    min-height: 310px;
    background: url('https://cdn.hotelhuddle.com/images/hero-background.webp') center center / cover no-repeat;
    position: relative;
    padding-bottom: 0;
}

.hero-inner {
    display: flex;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
    align-items: flex-start;
    gap: 2rem;
}

.hero-text {
    flex: 0 0 60%;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-image {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: 16px;
    display: block;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a5f;
    -webkit-text-fill-color: #1e3a5f;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 3px rgba(10, 22, 40, 0.15);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: #8892A6;
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 640px;
}

.hero-form-area {
    width: 100%;
    max-width: 1100px;
    margin: -3rem auto 0;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.harper-tab {
    position: absolute;
    top: -28px;
    right: 40px;
    background: #ffffff;
    color: #1e3a5f;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px 8px 0 0;
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
    transition: background 0.2s;
    z-index: 3;
}

.harper-tab:hover {
    background: #f0f4f8;
    color: #1e3a5f;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
}

/* ── Mode Toggle ────────────────────────────────── */
.hero-mode-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero-mode-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted, #5A6078);
    transition: color 0.25s, font-weight 0.25s;
    user-select: none;
    cursor: pointer;
}

.hero-mode-label--active {
    color: var(--text, #1A1D2E);
}

.hero-toggle-track {
    position: relative;
    width: 48px;
    height: 26px;
    background: var(--accent, #1e3a5f);
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.25s;
    flex-shrink: 0;
}

.hero-toggle-track--nyp {
    background: var(--accent-2, #1a2d4a);
}

.hero-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-toggle-track--nyp .hero-toggle-thumb {
    transform: translateX(22px);
}

.hero-toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* ── Hero Form ─────────────────────────────────── */
.hero-form {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
}

.hero-form-field {
    flex: 1;
    min-width: 0;
}

.hero-field-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3a4560;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.hero-field-location {
    flex: 1.8;
    position: relative;
}

.hero-field-dates {
    flex: 1.4;
}

.hero-field-adults {
    flex: 0.7;
    display: none; /* Hidden by default; shown in Book Now mode via JS */
}

.hero-field-rooms {
    flex: 0.7;
}

.hero-field-submit {
    flex: 0 0 auto;
    align-self: flex-end;
}

.hero-field-location .form-input {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--bg, #F8F9FC);
    color: var(--text, #1A1D2E);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.hero-field-location .form-input:focus {
    border-color: var(--accent, #1e3a5f);
}

.hero-field-location .form-input::placeholder {
    color: var(--text-muted, #8892A6);
}

.hero-field-adults .form-select {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--bg, #F8F9FC);
    color: var(--text, #1A1D2E);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8eaf2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.hero-field-adults .form-select:focus {
    border-color: var(--accent, #1e3a5f);
}

/* ── Price Input (NYP mode) ─────────────────────── */
.hero-field-price {
    flex: 0.8;
}

.hero-price-input-wrapper {
    position: relative;
}

.hero-price-prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted, #5A6078);
    pointer-events: none;
    z-index: 1;
}

.hero-price-input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2rem !important;
    background: var(--bg, #F8F9FC);
    color: var(--text, #1A1D2E);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    -moz-appearance: textfield;
}

.hero-price-input::-webkit-outer-spin-button,
.hero-price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hero-price-input:focus {
    border-color: var(--accent-2, #1a2d4a);
}

.hero-price-input::placeholder {
    color: var(--text-muted, #8892A6);
}

.hero-field-price .form-input-error {
    border-color: #ef4444 !important;
}

.form-input-error {
    border-color: #ef4444 !important;
}

.hero-submit-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    border: 2px solid var(--accent, #1e3a5f);
    border-radius: 8px;
    cursor: pointer;
    background: var(--accent, #1e3a5f);
    color: #fff;
    transition: all 0.2s;
}

.hero-submit-btn:hover {
    background: #2a5298;
    border-color: #2a5298;
}

.hero-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hero-submit-btn--nyp {
    background: var(--accent-2, #1a2d4a);
    border-color: var(--accent-2, #1a2d4a);
}

.hero-submit-btn--nyp:hover {
    background: #7c3aed;
    border-color: #7c3aed;
}

/* ── Autocomplete Dropdown ──────────────────────── */
.autocomplete-wrapper {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 240px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.autocomplete-dropdown.visible {
    display: block;
}

.autocomplete-item {
    padding: 0.6rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.15s;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.04));
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: rgba(30, 58, 95, 0.08);
}

.autocomplete-item .city-name {
    font-weight: 500;
}

.autocomplete-item .city-state {
    color: var(--text-muted, #5A6078);
    font-size: 0.85rem;
}

.autocomplete-loading {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
}

.spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid var(--border, rgba(0, 0, 0, 0.08));
    border-top-color: var(--accent, #1e3a5f);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── Seller-of-Travel notice ────────────────────── */
.sot-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    animation: fadeIn 0.3s ease;
    text-align: left;
}

.sot-icon {
    width: 20px;
    height: 20px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.sot-notice strong {
    color: #fca5a5;
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.85rem;
}

.sot-notice p {
    color: var(--text-muted, #5A6078);
    font-size: 0.8rem;
    margin: 0;
}

/* ── Trust Indicators ──────────────────────────── */
.trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.trust-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
}

.trust-indicator-icon {
    color: var(--accent, #1e3a5f);
    margin-bottom: 0.25rem;
}

.trust-indicator-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    letter-spacing: -0.02em;
}

.trust-indicator-label {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    font-weight: 500;
}

/* ── Two Ways to Book Section ───────────────────── */
.booking-ways-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

.booking-ways-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    text-align: center;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.booking-ways-subtitle {
    font-size: 1rem;
    color: var(--text-muted, #5A6078);
    text-align: center;
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.booking-ways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.booking-way-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 14px;
    padding: 2rem 1.75rem;
    transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.booking-way-card:hover {
    border-color: var(--accent, #1e3a5f);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
}

.booking-way-card--nyp {
    border-color: rgba(139, 92, 246, 0.25);
}

.booking-way-card--nyp:hover {
    border-color: var(--accent-2, #1a2d4a);
    box-shadow: 0 4px 20px rgba(26, 45, 74, 0.08);
}

.booking-way-card--nyp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent, #1e3a5f), var(--accent-2, #1a2d4a));
}

.booking-way-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    color: #fff;
}

.booking-way-icon--book {
    background: linear-gradient(135deg, var(--accent, #1e3a5f), #2a5298);
}

.booking-way-icon--nyp {
    background: linear-gradient(135deg, var(--accent, #1e3a5f), var(--accent-2, #1a2d4a));
}

.booking-way-icon svg {
    width: 26px;
    height: 26px;
}

.booking-way-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.6rem;
    line-height: 1.3;
}

.booking-way-desc {
    font-size: 0.9rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.booking-way-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-way-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
}

.booking-way-features li svg {
    flex-shrink: 0;
    color: var(--accent, #1e3a5f);
}

.booking-way-card--nyp .booking-way-features li svg {
    color: var(--accent-2, #1a2d4a);
}

.booking-way-price {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.06));
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.booking-way-price-label {
    font-size: 0.8rem;
    color: var(--text-muted, #5A6078);
}

.booking-way-price-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent, #1e3a5f);
}

.booking-way-card--nyp .booking-way-price-value {
    color: var(--accent-2, #1a2d4a);
}

.booking-way-price-note {
    font-size: 0.8rem;
    color: var(--text-muted, #8892A6);
}

/* ── How It Works Section ────────────────────────── */
.how-it-works-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

.how-it-works-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    text-align: center;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.how-it-works-subtitle {
    font-size: 1rem;
    color: var(--text-muted, #5A6078);
    text-align: center;
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 14px;
    position: relative;
    transition: border-color 0.2s, transform 0.15s;
}

.step-card:hover {
    border-color: var(--accent, #1e3a5f);
    transform: translateY(-2px);
}

.step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent, #1e3a5f), var(--accent-2, #1a2d4a));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.6rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.6;
    margin: 0;
}

/* ── FAQ Section ─────────────────────────────────── */
.faq-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

.faq-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted, #5A6078);
    text-align: center;
    margin-bottom: 2rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.10);
}

.faq-item--open {
    border-color: var(--accent, #1e3a5f);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--text, #1A1D2E);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question-text {
    flex: 1;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--text-muted, #5A6078);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-chevron--rotated {
    transform: rotate(180deg);
}

.faq-answer-wrapper {
    overflow: hidden;
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted, #3a4560);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

/* ── Page Container ───────────────────────────── */
.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Mobile Responsive ─────────────────────────── */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .hero-text,
    .hero-image {
        flex: none;
        max-width: 100%;
    }

    .hero-image {
        margin-top: 1rem;
    }

    .hero-image img {
        max-height: 260px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-form {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-form-field {
        width: 100%;
    }

    .hero-field-location,
    .hero-field-dates,
    .hero-field-adults,
    .hero-field-rooms {
        flex: none;
    }

    .hero-field-price {
        flex: none;
        width: 100%;
    }

    .hero-field-submit {
        width: 100%;
    }

    .hero-submit-btn {
        width: 100%;
        text-align: center;
    }

    .hero-mode-toggle {
        justify-content: center;
    }

    .booking-ways-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-section {
        min-height: auto;
    }

    .hero-inner {
        padding: 2rem 1rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-form-area {
        margin-top: -2rem;
    }

    .trust-indicators {
        gap: 1.25rem;
    }

    .trust-indicator-value {
        font-size: 1.25rem;
    }

    .booking-ways-heading,
    .how-it-works-heading {
        font-size: 1.5rem;
    }

    .booking-way-card {
        padding: 1.5rem 1.25rem;
    }

    .step-card {
        padding: 1.5rem 1.25rem;
    }

    .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }

    .faq-chevron {
        width: 18px;
        height: 18px;
    }
}

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

/* ── From: reservation/show.blade.php ── */
/* ── Reservation Detail Page ──────────────────── */
.resd-page {
    max-width: 960px;
    margin: 0 auto;
}

.resd-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.2s;
}

.resd-back-link:hover {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
}

.resd-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.resd-header-left {
    flex: 1;
    min-width: 0;
}

.resd-header-right {
    flex-shrink: 0;
}

.resd-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    letter-spacing: -0.02em;
    margin-bottom: 0.15rem;
}

.resd-id {
    font-size: 0.85rem;
    color: var(--text-muted, #8892A6);
}

/* ── Status Badges ────────────────────────────── */
.resd-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.resd-status-pending_payment {
    background: rgba(250, 204, 21, 0.14);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
}

.resd-status-pending {
    background: rgba(234, 179, 8, 0.14);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #fbbf24;
}

.resd-status-submitted {
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(30, 58, 95, 0.25);
    color: #2a5298;
}

.resd-status-accepted {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.resd-status-declined {
    background: rgba(239, 68, 68, 0.14);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* ── Flash Messages ──────────────────────────── */
.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.flash-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.flash-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

/* ── Card ────────────────────────────────────── */
.resd-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
}

.resd-card-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #5A6078);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

/* ── Summary Grid ─────────────────────────────── */
.resd-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.5rem;
}

.resd-field {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.resd-field-wide {
    grid-column: 1 / -1;
}

.resd-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #8892A6);
}

.resd-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.resd-meta {
    margin-top: 0.85rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.06));
    display: flex;
    gap: 1.5rem;
    font-size: 0.78rem;
    color: var(--text-muted, #8892A6);
}

/* ── Hotel Bids Table ─────────────────────────── */
.resd-bids-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.resd-bids-table thead th {
    text-align: left;
    padding: 0.6rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #8892A6);
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    white-space: nowrap;
}

.resd-bids-table tbody td {
    padding: 0.7rem 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: var(--text, #1A1D2E);
    vertical-align: middle;
}

.resd-bids-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.04);
}

.resd-bids-table tbody tr:last-child td {
    border-bottom: none;
}

.resd-bids-hotel-name {
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.resd-bids-distance {
    color: var(--text-muted, #5A6078);
}

.resd-bids-rate {
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.resd-bids-rate-crossed {
    text-decoration: line-through;
    color: var(--text-muted, #8892A6);
    font-size: 0.8rem;
    margin-right: 0.35rem;
}

/* ── Bid Status Badges ────────────────────────── */
.resd-bid-status {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 9999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.resd-bid-status-pending {
    background: rgba(234, 179, 8, 0.14);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #fbbf24;
}

.resd-bid-status-submitted {
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(30, 58, 95, 0.25);
    color: #2a5298;
}

.resd-bid-status-accepted {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.resd-bid-status-declined {
    background: rgba(239, 68, 68, 0.14);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.resd-bid-status-counter {
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

/* ── Payment Card ────────────────────────────── */
.resd-payment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.resd-payment-status {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.resd-payment-succeeded {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.resd-payment-pending {
    background: rgba(234, 179, 8, 0.14);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #fbbf24;
}

.resd-payment-amount {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

/* ── No Matches ──────────────────────────────── */
.resd-no-matches {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted, #5A6078);
    font-size: 0.85rem;
}

.resd-no-matches-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    opacity: 0.4;
}

/* ── Pay Action ──────────────────────────────── */
.resd-pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: var(--accent, #1e3a5f);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 1rem;
}

.resd-pay-btn:hover {
    background: #2a5298;
    text-decoration: none;
}

/* ── Mobile Responsive ─────────────────────────── */
@media (max-width: 768px) {
    .resd-bids-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -0.75rem;
    }

    .resd-bids-table {
        min-width: 600px;
    }
}

@media (max-width: 640px) {
    .resd-page {
        max-width: 100%;
    }

    .resd-title {
        font-size: 1.5rem;
    }

    .resd-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .resd-summary-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .resd-field-wide {
        grid-column: 1;
    }

    .resd-payment-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ── From: rfp/bid.blade.php ── */
.rfp-detail-container {
    max-width: none;
    margin: 0;
}

.rfp-back-link {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.rfp-back-link:hover {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
}

/* Header */
.rfp-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.rfp-detail-header-left {
    flex: 1;
    min-width: 0;
}

.rfp-detail-header-right {
    flex-shrink: 0;
}

.rfp-detail-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.15rem;
}

/* Cards */
.rfp-detail-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
}

.rfp-detail-card-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #5A6078);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

/* Accommodation badges */
.rfp-accommodation-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    line-height: 1.3;
}

.rfp-accommodation-exact {
    color: rgba(34, 197, 94, 0.7);
    background: rgba(34, 197, 94, 0.08);
}

.rfp-accommodation-counter {
    color: rgba(250, 168, 38, 0.85);
    background: rgba(250, 168, 38, 0.08);
}

/* Cost section */
.rfp-response-cost-section {
    margin-bottom: 0.85rem;
    padding: 0.85rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(30, 58, 95, 0.10);
    border-radius: 10px;
}

.rfp-cost-line-items {
    margin-bottom: 0.65rem;
}

.rfp-cost-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.rfp-cost-line:last-child {
    border-bottom: none;
}

.rfp-cost-line-detail {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.rfp-cost-room-type {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.rfp-cost-calc {
    font-size: 0.75rem;
    color: var(--text-muted, #8892A6);
}

.rfp-cost-line-total {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.rfp-cost-grand-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0 0;
    border-top: 1px solid rgba(30, 58, 95, 0.15);
    margin-top: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.rfp-cost-grand-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent, #1e3a5f);
    letter-spacing: -0.02em;
}

.rfp-cost-disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted, #8892A6);
    margin-top: 0.4rem;
    font-style: italic;
}

/* No-rate line (room type requested but hotel didn't provide a rate) */
.rfp-cost-line-no-rate {
    opacity: 0.65;
}
.rfp-cost-no-rate-note {
    color: rgba(250, 168, 38, 0.7) !important;
    font-style: italic;
}
.rfp-cost-unavailable {
    color: #8892A6 !important;
}

/* Meta rows */
.rfp-response-meta-row {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

.rfp-response-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #8892A6);
    margin-bottom: 0.2rem;
}

.rfp-response-value {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text, #1A1D2E);
    line-height: 1.4;
}

.rfp-response-value-small {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-muted, #5A6078);
}

/* Counter offers */
.rfp-response-counter-offers {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

.rfp-counter-offer-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.3rem;
}

.rfp-counter-offer-item {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.4rem 0.65rem;
    background: rgba(250, 204, 21, 0.06);
    border-radius: 6px;
    border-left: 3px solid rgba(250, 204, 21, 0.4);
    font-size: 0.82rem;
    flex-wrap: wrap;
}

.rfp-counter-offer-room {
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.rfp-counter-offer-rooms {
    color: #facc15;
    font-weight: 500;
}

.rfp-counter-offer-note {
    color: var(--text-muted, #5A6078);
    font-style: italic;
}

/* Select Winner */
.rfp-select-winner-form {
    margin-top: 0.75rem;
}

.rfp-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
    text-align: center;
}

.rfp-action-select-winner {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    width: 100%;
}

.rfp-action-select-winner:hover {
    background: rgba(34, 197, 94, 0.28);
    border-color: rgba(34, 197, 94, 0.6);
}

/* Badges */
.rfp-badge-accepted {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
}

/* Winner Banner */
.rfp-winner-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18) 0%, rgba(34, 197, 94, 0.08) 100%);
    border: 2px solid rgba(34, 197, 94, 0.45);
    border-radius: 12px;
    animation: rfp-winner-pulse 2s ease-in-out infinite;
}

.rfp-winner-banner-icon {
    font-size: 1.5rem;
}

.rfp-winner-banner-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #4ade80;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

@keyframes rfp-winner-pulse {
    0%, 100% { border-color: rgba(34, 197, 94, 0.45); }
    50% { border-color: rgba(34, 197, 94, 0.7); }
}

/* Winner Notice */
.rfp-winner-notice {
    text-align: center;
    padding: 0.5rem 0;
}

.rfp-winner-notice-text {
    font-size: 1rem;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.rfp-winner-commission-note {
    font-size: 0.82rem;
    color: #5A6078;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    border-left: 3px solid rgba(34, 197, 94, 0.3);
    margin-top: 0.35rem;
}

/* Side-by-side comparison */
.rfp-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.rfp-compare-col {
    border-radius: 10px;
    overflow: hidden;
}

.rfp-compare-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
}

.rfp-compare-original .rfp-compare-col-header {
    background: rgba(30, 58, 95, 0.06);
    border: 1px solid rgba(30, 58, 95, 0.15);
}

.rfp-compare-counter .rfp-compare-col-header {
    background: rgba(250, 168, 38, 0.08);
    border: 1px solid rgba(250, 168, 38, 0.25);
}

.rfp-compare-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rfp-compare-original .rfp-compare-col-title {
    color: #2a5298;
}

.rfp-compare-counter .rfp-compare-col-title {
    color: #fbbf24;
}

.rfp-compare-col-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    background: rgba(250, 168, 38, 0.18);
    color: #fbbf24;
}

.rfp-compare-cost-section {
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.06));
    border-radius: 8px;
}

.rfp-cost-grand-counter {
    color: #fbbf24 !important;
}

.rfp-compare-diff {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    margin-top: 0.75rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.rfp-compare-diff-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted, #5A6078);
}

.rfp-compare-diff-amount {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.rfp-compare-diff-save {
    color: #4ade80;
}

.rfp-compare-diff-more {
    color: #fbbf24;
}

/* Commission Disclosure */
.rfp-commission-disclosure {
    padding: 0.85rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(30, 58, 95, 0.10);
    border-radius: 10px;
}

.rfp-commission-text {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.6rem 0;
}

.rfp-commission-text strong {
    color: var(--text, #1A1D2E);
}

.rfp-commission-alt {
    color: #3a4560;
    font-size: 0.82rem;
}

.rfp-commission-rate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(30, 58, 95, 0.15);
}

.rfp-commission-rate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.55rem 0.4rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}

.rfp-commission-rate-active {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(30, 58, 95, 0.08);
}

.rfp-commission-rate-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted, #5A6078);
}

.rfp-commission-rate-active .rfp-commission-rate-label {
    color: rgba(59, 130, 246, 0.9);
}

.rfp-commission-rate-pct {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
}

.rfp-commission-rate-active .rfp-commission-rate-pct {
    color: var(--accent, #1e3a5f);
}

.rfp-commission-rate-amount {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted, #5A6078);
}

.rfp-commission-rate-active .rfp-commission-rate-amount {
    color: var(--text, #1A1D2E);
}

/* Responsive */
@media (max-width: 768px) {
    .rfp-detail-title {
        font-size: 1.35rem;
    }
    .rfp-compare-grid {
        grid-template-columns: 1fr;
    }
    .rfp-commission-rate-grid {
        grid-template-columns: 1fr;
    }
}

/* ── From: rfp/create.blade.php ── */
.rfp-detail-container {
    max-width: 720px;
    margin: 0 auto;
}

.rfp-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.rfp-subtitle {
    color: var(--text-muted, #5A6078);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ── Summary Card ──────────────────────────────── */
.rfp-summary {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.rfp-summary-heading {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #5A6078);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

.rfp-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.rfp-summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rfp-summary-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #8892A6);
}

.rfp-summary-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

/* ── Detail Form ───────────────────────────────── */
.rfp-detail-form {
    margin-top: 0.5rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text, #1A1D2E);
}

.required {
    color: #ef4444;
}

.optional {
    font-weight: 400;
    color: var(--text-muted, #8892A6);
}

.form-input {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    background: var(--bg-surface, #ffffff);
    color: var(--text, #1A1D2E);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-input:focus {
    border-color: var(--accent, #1e3a5f);
}

.form-input::placeholder {
    color: var(--text-muted, #8892A6);
}

.form-input option {
    background: var(--bg-surface, #ffffff);
    color: var(--text, #1A1D2E);
}

.form-textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    border-radius: 8px;
}

.btn-primary {
    background: var(--accent, #1e3a5f);
    color: #fff;
    border: 2px solid var(--accent, #1e3a5f);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #2a5298;
    border-color: #2a5298;
}

@media (max-width: 768px) {
    .rfp-title {
        font-size: 1.5rem;
    }

    .rfp-summary-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── From: rfp/edit.blade.php ── */
.rfp-detail-container {
    max-width: 720px;
    margin: 0 auto;
}

.rfp-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.rfp-subtitle {
    color: var(--text-muted, #5A6078);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Summary Card */
.rfp-summary {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.rfp-summary-heading {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #5A6078);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

.rfp-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.rfp-summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rfp-summary-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #8892A6);
}

.rfp-summary-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

/* Form */
.rfp-detail-form {
    margin-top: 0.5rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text, #1A1D2E);
}

.required {
    color: #ef4444;
}

.optional {
    font-weight: 400;
    color: var(--text-muted, #8892A6);
}

.form-input {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    background: var(--bg-surface, #ffffff);
    color: var(--text, #1A1D2E);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-input:focus {
    border-color: var(--accent, #1e3a5f);
}

.form-input::placeholder {
    color: var(--text-muted, #8892A6);
}

.form-input option {
    background: var(--bg-surface, #ffffff);
    color: var(--text, #1A1D2E);
}

.form-input-readonly {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-textarea {
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group-half {
    flex: 1;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent, #1e3a5f);
    color: #fff;
    border: 2px solid var(--accent, #1e3a5f);
}

.btn-primary:hover {
    background: #2a5298;
    border-color: #2a5298;
}

.btn-secondary {
    background: transparent;
    color: var(--text, #1A1D2E);
    border: 2px solid var(--border, rgba(0, 0, 0, 0.08));
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.06);
}

.btn-submit {
    flex: 1;
}

@media (max-width: 768px) {
    .rfp-title {
        font-size: 1.5rem;
    }

    .rfp-summary-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
    }
}

/* ── From: rfp/interstitial.blade.php ── */
.interstitial-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.interstitial-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.interstitial-banner--low {
    border-color: rgba(250, 204, 21, 0.3);
    background: rgba(250, 204, 21, 0.06);
}

.interstitial-banner-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--success, #4ade80);
    animation: pulse 2s ease-in-out infinite;
}

.interstitial-banner-icon--warn {
    color: var(--warning, #facc15);
}

.interstitial-banner-icon svg {
    width: 100%;
    height: 100%;
}

.interstitial-banner-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.25rem;
}

.interstitial-banner-detail {
    font-size: 0.85rem;
    color: var(--text-muted, rgba(232,234,242,0.55));
    margin: 0;
}

.interstitial-social-proof {
    font-size: 0.8rem;
    color: var(--text-muted, rgba(232,234,242,0.4));
    margin: 0 0 2rem 0;
    padding-left: 0.25rem;
}

.interstitial-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.interstitial-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 12px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: box-shadow 0.3s ease;
}

.interstitial-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.interstitial-card--alt {
    border-color: rgba(30, 58, 95, 0.15);
}

.interstitial-card-icon {
    width: 48px;
    height: 48px;
    color: var(--success, #4ade80);
    margin-bottom: 1rem;
}

.interstitial-card-icon--alt {
    color: var(--accent, #1e3a5f);
}

.interstitial-card-icon svg {
    width: 100%;
    height: 100%;
}

.interstitial-card-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.75rem;
}

.interstitial-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted, rgba(232,234,242,0.7));
    margin: 0 0 1rem;
    line-height: 1.5;
}

.interstitial-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    text-align: left;
    width: 100%;
}

.interstitial-benefits li {
    font-size: 0.85rem;
    color: var(--text-muted, rgba(232,234,242,0.65));
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.interstitial-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success, #4ade80);
    font-weight: 700;
}

.interstitial-card--alt .interstitial-benefits li::before {
    content: '→';
    color: var(--accent, #1e3a5f);
}

.interstitial-options-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    text-align: center;
    margin: 1.5rem 0 1rem;
    letter-spacing: -0.01em;
}

.interstitial-card-price-callout {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 0 0.25rem;
    padding: 0.75rem 1rem;
    background: rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.20);
    border-radius: 8px;
}

.interstitial-card-price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent, #1e3a5f);
    line-height: 1;
}

.interstitial-card-price-free {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success, #4ade80);
    line-height: 1;
}

.interstitial-card-price-label {
    font-size: 0.85rem;
    color: var(--text-muted, rgba(232,234,242,0.7));
    font-weight: 500;
}

.interstitial-card-price-separator {
    color: var(--text-muted, rgba(232,234,242,0.35));
    font-size: 0.85rem;
}

.interstitial-card-refund-policy {
    font-size: 0.8rem;
    color: var(--text-muted, rgba(232,234,242,0.6));
    margin: 0.25rem 0 1.25rem;
    font-style: italic;
    line-height: 1.5;
}

.interstitial-card-refund-policy a {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
}

.interstitial-card-refund-policy a:hover {
    color: var(--accent-hover, #2a5298);
}

.interstitial-card-cta {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.interstitial-card-cta--primary {
    background: var(--accent, #1e3a5f);
    color: #fff;
}

.interstitial-card-cta--primary:hover {
    background: var(--accent-hover, #2a5298);
    transform: translateY(-1px) scale(1.02);
}

.interstitial-card-cta--alt {
    background: transparent;
    color: var(--accent, #1e3a5f);
    border: 1px solid var(--accent, #1e3a5f);
}

.interstitial-card-cta--alt:hover {
    background: rgba(30, 58, 95, 0.08);
    transform: translateY(-1px) scale(1.02);
}

/* Entrance animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

/* Banner fades in immediately (0s delay applied inline by default) */
.interstitial-banner.fade-in-up {
    animation-delay: 0s;
}

/* Pulse animation for banner icon */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.interstitial-referral {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-surface, #ffffff);
    border: 1px solid rgba(30, 58, 95, 0.15);
    border-radius: 12px;
}

.interstitial-referral-icon {
    width: 48px;
    height: 48px;
    color: var(--accent, #1e3a5f);
    margin: 0 auto 1rem;
}

.interstitial-referral-icon svg {
    width: 100%;
    height: 100%;
}

.interstitial-referral-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 0 0 1rem;
}

.interstitial-referral-explain {
    font-size: 0.95rem;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.5rem;
    line-height: 1.6;
}

.interstitial-referral-detail {
    font-size: 0.85rem;
    color: var(--text-muted, rgba(232,234,242,0.6));
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.interstitial-referral-cta-wrap {
    margin-top: 2rem;
}

.interstitial-referral-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem 1.25rem;
    background: var(--bg-surface, #ffffff);
    border: 2px solid var(--accent, #1e3a5f);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.interstitial-referral-brand:hover {
    background: rgba(30, 58, 95, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(30, 58, 95, 0.15);
}

.interstitial-referral-continue-label {
    font-size: 0.85rem;
    color: var(--text-muted, rgba(232,234,242,0.6));
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.interstitial-referral-brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.interstitial-referral-logo {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    flex-shrink: 0;
}

.interstitial-referral-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.interstitial-referral-brand-name {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.interstitial-referral-brand-url {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted, rgba(232,234,242,0.5));
    line-height: 1.3;
}

.interstitial-referral-hotelcount {
    font-size: 0.95rem;
    color: var(--text, #1A1D2E);
    margin: 1rem 0 0;
    font-weight: 600;
}

/* ── From: rfp/new.blade.php ── */
.new-rfp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.new-rfp-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.new-rfp-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ── Upsell Card ────────────────────────────────── */
.upsell-card {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-left: 4px solid rgba(245, 158, 11, 0.7);
    border-radius: 8px;
    margin-bottom: 2rem;
    animation: fadeIn 0.3s ease;
}

.upsell-card-body {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.15rem 1.25rem;
}

.upsell-icon {
    flex-shrink: 0;
    margin-top: 1px;
    color: #f59e0b;
}

.upsell-icon svg {
    width: 22px;
    height: 22px;
}

.upsell-content {
    flex: 1;
    min-width: 0;
}

.upsell-heading {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.35rem;
}

.upsell-text {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.5;
    margin: 0 0 0.85rem 0;
}

.upsell-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.15rem;
    background: #16a34a;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.upsell-cta:hover {
    background: #15803d;
}

.upsell-cta svg {
    flex-shrink: 0;
}

.upsell-continue {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-muted, #5A6078);
}

.upsell-why-link {
    color: #5A6078;
    font-style: italic;
    font-size: 0.82rem;
    text-decoration: underline;
    text-decoration-style: dotted;
    transition: color 0.2s;
}

.upsell-why-link:hover {
    color: #3a4560;
}

.upsell-caveat {
    font-weight: 400;
    font-size: 0.82rem;
    color: var(--text-muted, #8892A6);
}

/* ── Subscription Active Notice ──────────────────── */
.sub-notice {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.1rem;
    margin-bottom: 2rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
}

.sub-notice-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #22c55e;
}

.sub-notice-text {
    font-size: 0.92rem;
    font-weight: 500;
    color: #86efac;
}

/* ── Hero Form (copied from welcome.blade.php) ──── */
.hero-form {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    width: 100%;
    max-width: 1100px;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.hero-form-field {
    flex: 1;
    min-width: 0;
}

.hero-field-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3a4560;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.hero-field-location {
    flex: 1.8;
    position: relative;
}

.hero-field-dates {
    flex: 1.4;
}

.hero-field-rooms {
    flex: 0.7;
}

.hero-field-submit {
    flex: 0 0 auto;
    align-self: flex-end;
}

.hero-field-location .form-input {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--bg, #F8F9FC);
    color: var(--text, #1A1D2E);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.hero-field-location .form-input:focus {
    border-color: var(--accent, #1e3a5f);
}

.hero-field-location .form-input::placeholder {
    color: var(--text-muted, #8892A6);
}

.hero-submit-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    border: 2px solid var(--accent, #1e3a5f);
    border-radius: 8px;
    cursor: pointer;
    background: var(--accent, #1e3a5f);
    color: #fff;
    transition: all 0.2s;
}

.hero-submit-btn:hover {
    background: #2a5298;
    border-color: #2a5298;
}

.hero-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Autocomplete Dropdown ──────────────────────── */
.autocomplete-wrapper {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 240px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.autocomplete-dropdown.visible {
    display: block;
}

.autocomplete-item {
    padding: 0.6rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.15s;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.04));
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: rgba(30, 58, 95, 0.08);
}

.autocomplete-item .city-name {
    font-weight: 500;
}

.autocomplete-item .city-state {
    color: var(--text-muted, #5A6078);
    font-size: 0.85rem;
}

.autocomplete-loading {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
}

.spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid var(--border, rgba(0, 0, 0, 0.08));
    border-top-color: var(--accent, #1e3a5f);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── Seller-of-Travel notice ────────────────────── */
.sot-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    animation: fadeIn 0.3s ease;
    text-align: left;
}

.sot-icon {
    width: 20px;
    height: 20px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.sot-notice strong {
    color: #fca5a5;
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.85rem;
}

.sot-notice p {
    color: var(--text-muted, #5A6078);
    font-size: 0.8rem;
    margin: 0;
}

/* ── Cancel link ────────────────────────────────── */
.cancel-link-wrap {
    text-align: center;
    margin-top: 1.5rem;
}

.cancel-link {
    color: var(--text-muted, #8892A6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.cancel-link:hover {
    color: var(--text, #1A1D2E);
    text-decoration: underline;
}

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

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
    .hero-form {
        flex-wrap: wrap;
    }

    .hero-field-location,
    .hero-field-dates {
        flex: 1 1 100%;
    }

    .hero-field-rooms {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .hero-field-submit {
        flex: 1 1 100%;
    }

    .hero-submit-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .new-rfp-title {
        font-size: 1.5rem;
    }

    .new-rfp-subtitle {
        font-size: 1rem;
    }

    .hero-form {
        padding: 1rem;
        gap: 0.75rem;
    }

    .upsell-card-body {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ── From: rfp/payment-embedded.blade.php ── */
.account-page {
    max-width: 480px;
    margin: 0 auto;
}

.account-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.checkout-subtitle {
    color: var(--text-muted, #5A6078);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Credit notice */
.credit-notice {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Order Summary Card */
.payment-summary-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.payment-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    color: var(--text-muted, #5A6078);
    font-size: 0.9rem;
}

.payment-summary-total {
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
}

.payment-summary-amount {
    font-weight: 500;
}

/* Payment Form */
.payment-form {
    margin-bottom: 1rem;
}

.payment-field-group {
    margin-bottom: 1.25rem;
}

.payment-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted, #3a4560);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.payment-card-element {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.10));
    border-radius: 8px;
    padding: 0.875rem 1rem;
    min-height: 48px;
    transition: border-color 0.2s ease;
}

.payment-card-element:hover {
    border-color: rgba(0, 0, 0, 0.10);
}

.payment-card-element.StripeElement--focus {
    border-color: var(--accent, #1e3a5f);
    box-shadow: 0 0 0 1px rgba(30, 58, 95, 0.10);
}

.payment-card-element.StripeElement--invalid {
    border-color: #ef4444;
}

.payment-card-errors {
    color: #f87171;
    font-size: 0.82rem;
    margin-top: 0.4rem;
    min-height: 1.1rem;
}

/* Pay Button */
.pay-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent, #1e3a5f);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    min-height: 48px;
}

.pay-button:hover {
    background: var(--accent-hover, #2a5298);
    transform: translateY(-1px);
}

.pay-button:active {
    transform: translateY(0);
}

.pay-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.pay-button-spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: pay-spin 0.7s linear infinite;
}

@keyframes pay-spin {
    to { transform: rotate(360deg); }
}

/* Payment Result Message */
.payment-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.payment-message.success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.payment-message.error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

/* Back link */
.checkout-back-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 44px;
}

@media (max-width: 640px) {
    .account-page {
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
    }
    .payment-card-element {
        padding: 0.75rem 0.875rem;
    }
}

/* ── From: rfp/show.blade.php ── */
.rfp-detail-container {
    max-width: none;
    margin: 0;
}

.rfp-back-link {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.rfp-back-link:hover {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
}

/* Header */
.rfp-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.rfp-detail-header-left {
    flex: 1;
    min-width: 0;
}

.rfp-detail-header-right {
    flex-shrink: 0;
}

.rfp-detail-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.15rem;
}

.rfp-detail-id {
    font-size: 0.85rem;
    color: var(--text-muted, #8892A6);
}

/* Flash */
.rfp-flash {
    padding: 0.65rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.rfp-flash-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.rfp-flash-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

/* Layout: 2-column */
.rfp-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.25rem;
    align-items: start;
}

/* Cards */
.rfp-detail-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
}

.rfp-detail-card-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #5A6078);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

/* Detail grid */
.rfp-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.5rem;
}

.rfp-detail-field {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.rfp-detail-field-wide {
    grid-column: 1 / -1;
}

.rfp-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #8892A6);
}

.rfp-detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.rfp-detail-meta {
    margin-top: 0.85rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.06));
    display: flex;
    gap: 1.5rem;
    font-size: 0.78rem;
    color: var(--text-muted, #8892A6);
}

/* Hotel Matches */
.rfp-match-count {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.rfp-match-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent, #1e3a5f);
    letter-spacing: -0.02em;
}

.rfp-match-label {
    font-size: 0.9rem;
    color: var(--text-muted, #5A6078);
}

/* Timeline */
.rfp-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.rfp-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border, rgba(0, 0, 0, 0.08));
}

.rfp-timeline-item {
    position: relative;
    padding-bottom: 1rem;
}

.rfp-timeline-item:last-child {
    padding-bottom: 0;
}

.rfp-timeline-dot {
    position: absolute;
    left: -1.5rem;
    top: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--border, rgba(0, 0, 0, 0.08));
    background: var(--bg-surface, #ffffff);
}

.rfp-timeline-dot-pending_payment {
    border-color: #facc15;
    background: rgba(250, 204, 21, 0.15);
}

.rfp-timeline-dot-pending {
    border-color: #facc15;
    background: rgba(250, 204, 21, 0.15);
}

.rfp-timeline-dot-submitted {
    border-color: #2a5298;
    background: rgba(30, 58, 95, 0.10);
}

.rfp-timeline-dot-accepted {
    border-color: #4ade80;
    background: rgba(34, 197, 94, 0.15);
}

.rfp-timeline-dot-paid {
    border-color: #4ade80;
    background: rgba(34, 197, 94, 0.15);
}

.rfp-timeline-dot-cancelled {
    border-color: #f87171;
    background: rgba(239, 68, 68, 0.15);
}

.rfp-timeline-content {
    padding-left: 0.25rem;
}

.rfp-timeline-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}

.rfp-timeline-arrow {
    color: var(--text-muted, #8892A6);
    font-size: 0.75rem;
}

.rfp-timeline-desc {
    font-size: 0.8rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 0.15rem;
}

.rfp-timeline-time {
    font-size: 0.72rem;
    color: var(--text-muted, #8892A6);
}

/* Notes */
.rfp-note-form {
    margin-bottom: 1rem;
}

.rfp-note-input {
    width: 100%;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text, #1A1D2E);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    outline: none;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.2s;
}

.rfp-note-input:focus {
    border-color: var(--accent, #1e3a5f);
}

.rfp-note-input::placeholder {
    color: var(--text-muted, #8892A6);
}

.rfp-note-submit {
    margin-top: 0.4rem;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--accent, #1e3a5f);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.rfp-note-submit:hover {
    background: #2a5298;
}

.rfp-notes-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.rfp-note-item {
    padding: 0.65rem 0.85rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--accent, #1e3a5f);
}

.rfp-note-text {
    font-size: 0.85rem;
    color: var(--text, #1A1D2E);
    line-height: 1.45;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.rfp-note-meta {
    font-size: 0.72rem;
    color: var(--text-muted, #8892A6);
    margin-top: 0.3rem;
}

.rfp-notes-empty {
    font-size: 0.85rem;
    color: var(--text-muted, #8892A6);
    text-align: center;
    padding: 0.5rem;
}

/* Actions */
.rfp-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.rfp-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
    text-align: center;
}

.rfp-action-edit {
    background: var(--accent, #1e3a5f);
    color: #fff;
}

.rfp-action-edit:hover {
    background: #2a5298;
    text-decoration: none;
}

.rfp-action-pay {
    background: var(--accent, #1e3a5f);
    color: #fff;
}

.rfp-action-pay:hover {
    background: #2a5298;
    text-decoration: none;
}

.rfp-action-cancel {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.rfp-action-cancel:hover {
    background: rgba(239, 68, 68, 0.12);
}

.rfp-cancel-form {
    width: 100%;
}

.rfp-cancel-notice {
    font-size: 0.78rem;
    color: rgba(250, 204, 21, 0.7);
    line-height: 1.45;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(250, 204, 21, 0.06);
    border-radius: 6px;
    border-left: 3px solid rgba(250, 204, 21, 0.3);
}

.rfp-cancel-notice-link {
    color: #facc15;
    text-decoration: underline;
}

.rfp-cancel-notice-link:hover {
    color: #fde047;
}

.rfp-cancelled-label {
    font-size: 0.85rem;
    color: var(--text-muted, #8892A6);
    text-align: center;
    padding: 0.5rem;
}

/* Hotel Responses */
.rfp-responses-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.rfp-response-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    padding: 1rem 1.1rem;
}

.rfp-response-declined {
    opacity: 0.55;
    border-color: rgba(0, 0, 0, 0.04);
}

.rfp-response-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.rfp-response-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.rfp-response-header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.rfp-response-hotel {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
}

.rfp-accommodation-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    line-height: 1.3;
}

.rfp-accommodation-exact {
    color: rgba(34, 197, 94, 0.7);
    background: rgba(34, 197, 94, 0.08);
}

.rfp-accommodation-counter {
    color: rgba(250, 168, 38, 0.85);
    background: rgba(250, 168, 38, 0.08);
}

.rfp-badge-lowest-price {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.rfp-badge-declined {
    background: rgba(107, 114, 128, 0.14);
    border: 1px solid rgba(107, 114, 128, 0.3);
    color: #9ca3af;
}

.rfp-response-declined-info {
    font-size: 0.78rem;
    color: var(--text-muted, #8892A6);
}

.rfp-response-meta-row {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

.rfp-response-value-small {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-muted, #5A6078);
}

.rfp-response-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #8892A6);
    margin-bottom: 0.2rem;
}

.rfp-response-value {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text, #1A1D2E);
    line-height: 1.4;
}

.rfp-response-cost-section {
    margin-bottom: 0.85rem;
    padding: 0.85rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(30, 58, 95, 0.10);
    border-radius: 10px;
}

.rfp-cost-line-items {
    margin-bottom: 0.65rem;
}

.rfp-cost-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.rfp-cost-line:last-child {
    border-bottom: none;
}

.rfp-cost-line-detail {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.rfp-cost-room-type {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.rfp-cost-calc {
    font-size: 0.75rem;
    color: var(--text-muted, #8892A6);
}

.rfp-cost-line-total {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.rfp-cost-grand-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0 0;
    border-top: 1px solid rgba(30, 58, 95, 0.15);
    margin-top: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.rfp-cost-grand-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent, #1e3a5f);
    letter-spacing: -0.02em;
}

.rfp-cost-disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted, #8892A6);
    margin-top: 0.4rem;
    font-style: italic;
}

.rfp-response-counter-offers {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}

.rfp-counter-offer-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.3rem;
}

.rfp-counter-offer-item {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.4rem 0.65rem;
    background: rgba(250, 204, 21, 0.06);
    border-radius: 6px;
    border-left: 3px solid rgba(250, 204, 21, 0.4);
    font-size: 0.82rem;
    flex-wrap: wrap;
}

.rfp-counter-offer-room {
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.rfp-counter-offer-rooms {
    color: #facc15;
    font-weight: 500;
}

.rfp-counter-offer-note {
    color: var(--text-muted, #5A6078);
    font-style: italic;
}

.rfp-select-winner-form {
    margin-top: 0.75rem;
}

.rfp-action-select-winner {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    width: 100%;
}

.rfp-action-select-winner:hover {
    background: rgba(34, 197, 94, 0.28);
    border-color: rgba(34, 197, 94, 0.6);
}

/* Compact response row */
.rfp-response-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    padding: 0.75rem 1.1rem;
    flex-wrap: wrap;
}

.rfp-response-row-left {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.rfp-response-row-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.rfp-response-row-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent, #1e3a5f);
    letter-spacing: -0.02em;
}

.rfp-response-row-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent, #1e3a5f);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.rfp-response-row-link:hover {
    color: #2a5298;
    text-decoration: underline;
}

.rfp-response-row-link-disabled {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(232, 234, 242, 0.25);
    white-space: nowrap;
    cursor: default;
    text-decoration: none;
}

.rfp-response-row-winner {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.04);
}

.rfp-badge-winner {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* Inline view-bid link for winning hotel in detail row */
.rfp-view-bid-inline {
    font-size: 0.85rem;
    color: var(--accent);
    text-decoration: none;
    margin-left: 0.5rem;
}
.rfp-view-bid-inline:hover {
    text-decoration: underline;
}

/* Receipt link in payment field */
.rfp-receipt-link {
    font-size: 0.85rem;
    color: var(--accent);
    text-decoration: none;
}
.rfp-receipt-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .rfp-response-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .rfp-response-row-right {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .rfp-detail-layout {
        grid-template-columns: 1fr;
    }

    .rfp-detail-title {
        font-size: 1.35rem;
    }

    .rfp-detail-grid {
        grid-template-columns: 1fr;
    }

    .rfp-response-fields {
        grid-template-columns: 1fr;
    }
}

/* ── From: profile/complete.blade.php ── */
.profile-complete-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 72px - 200px);
    padding: 2rem 1rem;
}

.profile-complete-card {
    width: 100%;
    max-width: 480px;
    background: var(--bg-surface, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2.5rem 2rem;
}

.profile-complete-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
    text-align: center;
}

.profile-complete-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.5;
}

.profile-complete-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #3a4560;
}

.form-label .required {
    color: #ef4444;
    margin-left: 2px;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text, #1A1D2E);
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-input::placeholder {
    color: #8892A6;
}

.form-input:focus {
    border-color: var(--accent, #1e3a5f);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.10);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error {
    font-size: 0.8rem;
    color: #ef4444;
}

.form-hint {
    font-size: 0.75rem;
    color: #8892A6;
    margin-top: -0.25rem;
}

.profile-complete-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent, #1e3a5f);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: inherit;
    margin-top: 0.5rem;
}

.profile-complete-btn:hover {
    background: #2a5298;
}

.profile-complete-btn:active {
    transform: scale(0.98);
}

.profile-complete-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
    color: rgba(232, 234, 242, 0.25);
    font-size: 0.8rem;
}

.profile-complete-divider::before,
.profile-complete-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.profile-decline-btn {
    display: block;
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #8892A6;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
}

.profile-decline-btn:hover {
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

@media (max-width: 480px) {
    .profile-complete-card {
        padding: 2rem 1.5rem;
    }

    .profile-complete-heading {
        font-size: 1.3rem;
    }
}

/* ── From: itinerary/create.blade.php ── */
.itinerary-create {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--accent);
    text-decoration: none;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Flash */
.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flash-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.flash-error ul {
    margin: 0;
    padding-left: 1.25rem;
}

/* Form */
.itinerary-form {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.required {
    color: #f87171;
}

.form-hint {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.form-input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Locations section */
.locations-section {
    margin: 2rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.locations-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.section-heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0;
    margin-top: 0;
}

.add-location-btn {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(30, 58, 95, 0.08);
    color: #2a5298;
    border: 1px solid rgba(30, 58, 95, 0.20);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.add-location-btn:hover {
    background: rgba(30, 58, 95, 0.15);
}

/* Location row */
.location-row {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.location-row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.location-number {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.remove-location-btn {
    background: none;
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s;
}

.remove-location-btn:hover {
    background: rgba(239, 68, 68, 0.12);
}

.location-fields {
    display: grid;
    gap: 1rem;
}

.location-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.location-rooms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Pricing summary */
.pricing-summary {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pricing-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.pricing-unlimited {
    color: #4ade80;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-detail {
    color: var(--text);
    font-size: 0.9rem;
}

/* Autocomplete dropdown */
.autocomplete-dropdown {
    position: absolute;
    z-index: 1000;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
}

.autocomplete-item {
    padding: 0.5rem 0.85rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
    transition: background 0.15s;
}

.autocomplete-item:hover {
    background: rgba(30, 58, 95, 0.08);
}

.autocomplete-item .city-name {
    font-weight: 600;
}

.autocomplete-item .city-state {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Actions */
.form-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.submit-btn {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #2a5298;
}

.cancel-link {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cancel-link:hover {
    color: var(--text);
}

/* ── From: itinerary/show.blade.php ── */
.itinerary-detail {
    max-width: 960px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--accent);
    text-decoration: none;
}

/* Flash */
.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flash-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.flash-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.flash-error ul {
    margin: 0;
    padding-left: 1.25rem;
}

/* Header */
.itinerary-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.itinerary-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.itinerary-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.itinerary-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    align-items: center;
    flex-wrap: wrap;
}

.itinerary-payment-info {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.85rem;
}

.itinerary-payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.itinerary-payment-value {
    color: var(--text);
    font-weight: 600;
}

.itinerary-receipt-link {
    color: var(--accent);
    text-decoration: none;
}

.itinerary-receipt-link:hover {
    text-decoration: underline;
}

.itinerary-count {
    background: rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.20);
    color: #2a5298;
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    font-weight: 600;
}

.itinerary-status {
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.itinerary-status-draft {
    background: rgba(156, 163, 175, 0.12);
    border: 1px solid rgba(156, 163, 175, 0.25);
    color: #9ca3af;
}

.itinerary-status-pending_payment {
    background: rgba(250, 204, 21, 0.14);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
}

.itinerary-status-pending {
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(30, 58, 95, 0.25);
    color: #2a5298;
}

.itinerary-status-submitted {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

/* Payment CTA */
.payment-cta {
    background: rgba(250, 204, 21, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.payment-cta-text {
    color: var(--text);
    font-size: 0.95rem;
    margin: 0 0 0.5rem;
}

.payment-cta-amount {
    color: var(--text);
    font-size: 1.1rem;
    margin: 0 0 1rem;
}

.pay-btn {
    display: inline-block;
    padding: 0.65rem 2rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.pay-btn:hover {
    background: #2a5298;
}

.payment-hint {
    display: block;
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.payment-hint a {
    color: var(--accent);
}

/* Sections */
.section-heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.itinerary-locations {
    margin-bottom: 2.5rem;
}

.locations-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.locations-header .section-heading {
    margin-bottom: 0;
}

.add-location-btn {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(30, 58, 95, 0.08);
    color: #2a5298;
    border: 1px solid rgba(30, 58, 95, 0.20);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.add-location-btn:hover {
    background: rgba(30, 58, 95, 0.15);
}

/* Location empty */
.location-empty {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.location-empty p { margin: 0; }

/* Location cards */
.location-cards {
    display: grid;
    gap: 1rem;
}

.location-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s;
}

.location-card:hover { border-color: rgba(0, 0, 0, 0.08); }

.location-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.location-city {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}

/* Status badges */
.location-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.location-badge-pending {
    background: rgba(250, 204, 21, 0.14);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
}

.location-badge-submitted {
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(30, 58, 95, 0.25);
    color: #2a5298;
}

.location-badge-accepted {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.location-badge-cancelled {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.location-card-body { margin-bottom: 0.5rem; }

.location-detail-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem 1.5rem;
}

.location-detail {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.location-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.location-detail-value {
    font-size: 0.9rem;
    color: var(--text);
}

.location-card-footer {
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
    display: flex;
    justify-content: flex-end;
}

/* Remove button */
.remove-form { margin: 0; }

.remove-btn {
    background: none;
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.remove-btn:hover {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.5);
}

/* Add location section */
.add-location-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.add-location-form {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.add-location-fields {
    display: grid;
    gap: 1rem;
}

.add-location-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.add-location-rooms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.required { color: #f87171; }

.form-input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
}

.add-location-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.submit-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #2a5298;
}

.cancel-btn {
    padding: 0.6rem 1.5rem;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.cancel-btn:hover {
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--text);
}

/* Autocomplete dropdown */
.autocomplete-dropdown {
    position: absolute;
    z-index: 1000;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
}

.autocomplete-item {
    padding: 0.5rem 0.85rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
    transition: background 0.15s;
}

.autocomplete-item:hover {
    background: rgba(30, 58, 95, 0.08);
}

.autocomplete-item .city-name {
    font-weight: 600;
}

.autocomplete-item .city-state {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* ── From: terms/accept.blade.php ── */
.terms-accept-page {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: calc(100vh - 72px - 200px);
    padding: 2rem 1rem;
}

.terms-accept-card {
    width: 100%;
    max-width: 720px;
    background: var(--bg-surface, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2.5rem 2rem;
}

.terms-accept-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
    text-align: center;
}

.terms-accept-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 1.5rem;
    text-align: center;
}

.terms-scroll-box {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text, #1A1D2E);
    font-size: 0.875rem;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.terms-scroll-box h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.terms-scroll-box h2:first-child {
    margin-top: 0;
}

.terms-scroll-box p {
    margin-bottom: 0.75rem;
    color: #2a3450;
}

.terms-scroll-box ul {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    color: #2a3450;
}

.terms-scroll-box li {
    margin-bottom: 0.25rem;
}

.terms-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(30, 58, 95, 0.15);
    border-radius: 8px;
}

.terms-checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent, #1e3a5f);
    flex-shrink: 0;
}

.terms-checkbox-row label {
    font-size: 0.9rem;
    color: var(--text, #1A1D2E);
    cursor: pointer;
    line-height: 1.4;
}

.terms-checkbox-row label a {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
}

.terms-btn-row {
    display: flex;
    gap: 1rem;
}

.terms-accept-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent, #1e3a5f);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: inherit;
}

.terms-accept-btn:hover {
    background: #2a5298;
}

.terms-accept-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #374151;
}

.terms-decline-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #5A6078;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    font-family: inherit;
}

.terms-decline-btn:hover {
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

@media (max-width: 480px) {
    .terms-accept-card {
        padding: 2rem 1.25rem;
    }
    .terms-btn-row {
        flex-direction: column-reverse;
    }
}

/* ── From: static/group-booking-mistakes-to-avoid.blade.php ── */
.static-page {
    max-width: 720px;
    margin: 0 auto;
}

.static-page-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.static-page-updated {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 2rem;
}

.static-page-body {
    font-size: 1rem;
    line-height: 1.75;
    color: #3a4560;
}

.static-page-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 2rem 0 0.75rem;
}

.static-page-body p {
    margin-bottom: 1rem;
}

.static-page-body ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.static-page-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.static-page-body li strong {
    color: var(--text, #1A1D2E);
}

/* ── From: static/group-hotel-rooms-for-church-groups.blade.php ── */
.static-page {
    max-width: 720px;
    margin: 0 auto;
}


.hero-banner {
    margin: 0 -1rem 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}
.hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
.static-page-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.static-page-updated {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 2rem;
}

.static-page-body {
    font-size: 1rem;
    line-height: 1.75;
    color: #3a4560;
}

.static-page-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 2rem 0 0.75rem;
}

.static-page-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 1.25rem 0 0.5rem;
}

.static-page-body p {
    margin-bottom: 1rem;
}

.static-page-body ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.static-page-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.static-page-body li strong {
    color: var(--text, #1A1D2E);
}

.related-reading {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-surface, #ffffff);
    border-radius: 10px;
    border: 1px solid rgba(232,234,242,0.1);
}
.related-reading-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.75rem;
}
.related-reading-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.related-reading-list li {
    margin-bottom: 0.5rem;
}
.related-reading-list li a {
    color: var(--accent, #1e3a5f);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: opacity 0.2s;
}
.related-reading-list li a:hover {
    opacity: 0.8;
}

/* ── From: static/how-to-negotiate-group-hotel-rates.blade.php ── */
.static-page {
    max-width: 720px;
    margin: 0 auto;
}

.static-page-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.static-page-updated {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 2rem;
}

.static-page-body {
    font-size: 1rem;
    line-height: 1.75;
    color: #3a4560;
}

.static-page-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 2rem 0 0.75rem;
}

.static-page-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 1.25rem 0 0.5rem;
}

.static-page-body p {
    margin-bottom: 1rem;
}

.static-page-body ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.static-page-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.static-page-body li strong {
    color: var(--text, #1A1D2E);
}

/* ── From: help/article.blade.php ── */
.help-breadcrumb {
        font-size: 0.875rem;
        color: #94a3b8;
        margin-bottom: 1.5rem;
    }

    .help-breadcrumb a {
        color: #1e3a5f;
        text-decoration: none;
    }

    .help-breadcrumb a:hover {
        text-decoration: underline;
    }

    .help-breadcrumb .separator {
        margin: 0 0.5rem;
        color: #64748b;
    }

    .help-article-header {
        margin-bottom: 2rem;
    }

    .help-article-header h1 {
        font-size: 2.25rem;
        font-weight: 700;
        color: #e2e8f0;
        margin: 0 0 0.5rem;
    }

    .help-article-updated {
        font-size: 0.8125rem;
        color: #64748b;
        margin: 0;
    }

    .help-article-body {
        background: #131525;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0.5rem;
        padding: 2rem;
        color: #e2e8f0;
        font-size: 1rem;
        line-height: 1.75;
    }

    .help-article-body p {
        margin: 0 0 1rem;
    }

    .help-article-body a {
        color: #1e3a5f;
        text-decoration: none;
    }

    .help-article-body a:hover {
        text-decoration: underline;
    }

    .help-article-body ul,
    .help-article-body ol {
        margin: 0 0 1rem;
        padding-left: 1.5rem;
    }

    .help-article-body li {
        margin-bottom: 0.375rem;
    }

    .help-article-body code {
        background: rgba(0, 0, 0, 0.06);
        padding: 0.125rem 0.375rem;
        border-radius: 0.25rem;
        font-size: 0.9em;
    }

    .help-article-body pre {
        background: rgba(0, 0, 0, 0.08);
        border-radius: 0.375rem;
        padding: 1rem;
        overflow-x: auto;
        margin: 0 0 1rem;
    }

    .help-article-body pre code {
        background: transparent;
        padding: 0;
    }

    .help-article-body blockquote {
        border-left: 3px solid #1e3a5f;
        padding-left: 1rem;
        color: #94a3b8;
        margin: 0 0 1rem;
    }

    .help-feedback {
        margin-top: 2rem;
        background: #131525;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0.5rem;
        padding: 1.5rem 2rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .help-feedback span {
        color: #94a3b8;
        font-size: 0.9375rem;
    }

    .help-feedback button {
        background: transparent;
        border: 1px solid rgba(0, 0, 0, 0.10);
        border-radius: 0.375rem;
        color: #e2e8f0;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        cursor: pointer;
        transition: border-color 0.2s, background 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
    }

    .help-feedback button:hover {
        border-color: #1e3a5f;
        background: rgba(30, 58, 95, 0.06);
    }

    .help-feedback .feedback-icon {
        font-size: 1.125rem;
    }

    .help-related {
        margin-top: 2rem;
        background: #131525;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0.5rem;
        padding: 1.5rem 2rem;
    }

    .help-related h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #e2e8f0;
        margin: 0 0 1rem;
    }

    .help-related p {
        color: #64748b;
        font-size: 0.875rem;
        margin: 0;
    }

    .help-still-need {
        margin-top: 2.5rem;
        background: #131525;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0.5rem;
        padding: 2rem;
        text-align: center;
    }

    .help-still-need p {
        color: #94a3b8;
        font-size: 1rem;
        margin: 0 0 1rem;
    }

    .help-still-need a {
        display: inline-block;
        background: #1e3a5f;
        color: #fff;
        padding: 0.625rem 1.5rem;
        border-radius: 0.375rem;
        font-weight: 600;
        font-size: 0.875rem;
        transition: background 0.2s;
        text-decoration: none;
    }

    .help-still-need a:hover {
        background: #2a5298;
        text-decoration: none;
    }

    .help-still-need .login-note {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.8125rem;
        color: #64748b;
    }

    @media (max-width: 640px) {
        .help-article-header h1 {
            font-size: 1.75rem;
        }

        .help-article-body {
            padding: 1.25rem;
        }

        .help-feedback {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
    }

/* ── From: help/category.blade.php ── */
.help-breadcrumb {
        font-size: 0.875rem;
        color: #94a3b8;
        margin-bottom: 1.5rem;
    }

    .help-breadcrumb a {
        color: #1e3a5f;
        text-decoration: none;
    }

    .help-breadcrumb a:hover {
        text-decoration: underline;
    }

    .help-breadcrumb .separator {
        margin: 0 0.5rem;
        color: #64748b;
    }

    .help-category-header {
        margin-bottom: 2rem;
    }

    .help-category-header h1 {
        font-size: 2.25rem;
        font-weight: 700;
        color: #e2e8f0;
        margin: 0 0 0.5rem;
    }

    .help-category-header .category-desc {
        font-size: 1.0625rem;
        color: #94a3b8;
        line-height: 1.6;
        margin: 0;
    }

    .help-article-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .help-article-card {
        display: block;
        background: #131525;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0.5rem;
        padding: 1.25rem 1.5rem;
        transition: border-color 0.2s;
        text-decoration: none;
    }

    .help-article-card:hover {
        border-color: #1e3a5f;
        text-decoration: none;
    }

    .help-article-card h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: #e2e8f0;
        margin: 0 0 0.375rem;
    }

    .help-article-card .article-preview {
        font-size: 0.875rem;
        color: #94a3b8;
        line-height: 1.5;
        margin: 0;
    }

    .help-empty-state {
        text-align: center;
        padding: 3rem 1rem;
        color: #94a3b8;
    }

    .help-empty-state p {
        font-size: 1rem;
        margin: 0;
    }

    .help-still-need {
        margin-top: 3rem;
        background: #131525;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0.5rem;
        padding: 2rem;
        text-align: center;
    }

    .help-still-need p {
        color: #94a3b8;
        font-size: 1rem;
        margin: 0 0 1rem;
    }

    .help-still-need a {
        display: inline-block;
        background: #1e3a5f;
        color: #fff;
        padding: 0.625rem 1.5rem;
        border-radius: 0.375rem;
        font-weight: 600;
        font-size: 0.875rem;
        transition: background 0.2s;
        text-decoration: none;
    }

    .help-still-need a:hover {
        background: #2a5298;
        text-decoration: none;
    }

    .help-still-need .login-note {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.8125rem;
        color: #64748b;
    }

    @media (max-width: 640px) {
        .help-category-header h1 {
            font-size: 1.75rem;
        }
    }

/* ── From: help/index.blade.php ── */
.help-hero {
        text-align: center;
        padding: 2.5rem 1rem 1.5rem;
    }

    .help-hero h1 {
        font-size: 2.25rem;
        font-weight: 700;
        color: #e2e8f0;
        margin-bottom: 0.5rem;
    }

    .help-hero p {
        font-size: 1.125rem;
        color: #94a3b8;
        margin: 0;
    }

    .help-search-wrapper {
        max-width: 640px;
        margin: 1.5rem auto 2.5rem;
        position: relative;
    }

    .help-search-icon {
        position: absolute;
        left: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        pointer-events: none;
    }

    .help-search-input {
        width: 100%;
        background: #131525;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0.5rem;
        padding: 1rem 1.25rem 1rem 3rem;
        font-size: 1.125rem;
        color: #e2e8f0;
        outline: none;
        transition: border-color 0.2s;
    }

    .help-search-input::placeholder {
        color: #64748b;
    }

    .help-search-input:focus {
        border-color: #1e3a5f;
    }

    .help-results-header {
        font-size: 1rem;
        color: #94a3b8;
        margin-bottom: 1rem;
    }

    .help-results-header strong {
        color: #e2e8f0;
    }

    .help-search-result {
        display: block;
        background: #131525;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0.5rem;
        padding: 1.25rem 1.5rem;
        margin-bottom: 0.75rem;
        transition: border-color 0.2s;
        text-decoration: none;
    }

    .help-search-result:hover {
        border-color: #1e3a5f;
        text-decoration: none;
    }

    .help-search-result h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: #e2e8f0;
        margin: 0 0 0.375rem;
    }

    .help-search-result .category-badge {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 500;
        color: #1e3a5f;
        background: rgba(30, 58, 95, 0.08);
        padding: 0.125rem 0.5rem;
        border-radius: 9999px;
        margin-bottom: 0.5rem;
    }

    .help-search-result .result-preview {
        font-size: 0.875rem;
        color: #94a3b8;
        line-height: 1.5;
    }

    .help-category-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .help-category-card {
        display: block;
        background: #131525;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0.5rem;
        padding: 1.5rem;
        transition: border-color 0.2s;
        text-decoration: none;
    }

    .help-category-card:hover {
        border-color: #1e3a5f;
        text-decoration: none;
    }

    .help-category-card h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: #e2e8f0;
        margin: 0 0 0.375rem;
    }

    .help-category-card .category-desc {
        font-size: 0.875rem;
        color: #94a3b8;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }

    .help-category-card .article-count {
        font-size: 0.8125rem;
        color: #64748b;
    }

    .help-empty-state {
        text-align: center;
        padding: 3rem 1rem;
        color: #94a3b8;
    }

    .help-empty-state p {
        font-size: 1rem;
        margin: 0;
    }

    .help-still-need {
        margin-top: 3rem;
        background: #131525;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0.5rem;
        padding: 2rem;
        text-align: center;
    }

    .help-still-need p {
        color: #94a3b8;
        font-size: 1rem;
        margin: 0 0 1rem;
    }

    .help-still-need a {
        display: inline-block;
        background: #1e3a5f;
        color: #fff;
        padding: 0.625rem 1.5rem;
        border-radius: 0.375rem;
        font-weight: 600;
        font-size: 0.875rem;
        transition: background 0.2s;
        text-decoration: none;
    }

    .help-still-need a:hover {
        background: #2a5298;
        text-decoration: none;
    }

    .help-still-need .login-note {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.8125rem;
        color: #64748b;
    }

    @media (max-width: 640px) {
        .help-hero h1 {
            font-size: 1.75rem;
        }

        .help-category-grid {
            grid-template-columns: 1fr;
        }

        .help-search-input {
            font-size: 1rem;
            padding: 0.875rem 1rem 0.875rem 2.75rem;
        }
    }

/* ── From: help/admin/article-form.blade.php ── */
.help-admin-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.help-admin-form h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.form-group label .required {
    color: #ef4444;
}

.form-group .hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

textarea.form-control {
    resize: vertical;
    min-height: 300px;
}

textarea.form-control.monospace {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Consolas', monospace;
    font-size: 0.8125rem;
    line-height: 1.6;
}

select.form-control {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--accent);
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background: #ffffff;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    opacity: 0.8;
}

/* Alert messages */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Empty categories warning */
.empty-categories {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #eab308;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.empty-categories a {
    color: currentColor;
    text-decoration: underline;
}

/* ── From: help/admin/category-form.blade.php ── */
.help-admin-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.help-admin-form h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.form-group label .required {
    color: #ef4444;
}

.form-group .hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background: #ffffff;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    opacity: 0.8;
}

/* Alert messages */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ── From: help/admin/index.blade.php ── */
.help-admin {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.help-admin h1 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
}

/* Tabs */
.help-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.help-tab {
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.help-tab:hover {
    color: var(--text);
}

.help-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Action buttons */
.admin-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-secondary {
    background: #ffffff;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    opacity: 0.8;
}

.btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
}

/* Tables */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    font-size: 0.875rem;
}

.admin-table th {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.admin-table td {
    border-top: 1px solid var(--border);
    color: var(--text);
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.actions-cell {
    display: flex;
    gap: 0.5rem;
}

.actions-cell form {
    display: inline;
}

/* Status badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.badge-warning {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

/* Alert messages */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.empty-state p {
    margin-bottom: 1rem;
}

/* ── From: components/backend-sidebar.blade.php ── */
.backend-sidebar {
        background: #ffffff;
        width: 240px;
        padding: 1.5rem 0;
        border-right: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
        overflow-y: auto;
    }

    .sidebar-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-nav-item {
        padding: 0;
        margin: 0;
    }

    .sidebar-nav-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        color: var(--text-muted);
        text-decoration: none;
        transition: all 0.15s ease;
        border-left: 3px solid transparent;
    }

    .sidebar-nav-link:hover {
        background: rgba(30, 58, 95, 0.06);
        color: var(--text);
    }

    .sidebar-nav-active {
        border-left: 3px solid var(--accent) !important;
        background: rgba(30, 58, 95, 0.04);
        color: var(--accent) !important;
        font-weight: 500;
    }

    .sidebar-nav-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        opacity: 0.6;
    }

    .sidebar-nav-active .sidebar-nav-icon {
        opacity: 1;
    }

    .sidebar-divider {
        height: 1px;
        background: var(--border);
        margin: 0.75rem 1.25rem;
    }

    .sidebar-section-title {
        padding: 0.6rem 1.25rem;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        font-weight: 600;
        cursor: default;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-section-chevron {
        transition: transform 0.2s;
    }

    .sidebar-section-chevron.rotated {
        transform: rotate(90deg);
    }

    .sidebar-section-items {
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .sidebar-section-items.collapsed {
        max-height: 0 !important;
    }

    .sidebar-logout-form {
        display: inline;
    }

    .sidebar-logout-btn {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        color: var(--text-muted);
        text-decoration: none;
        transition: all 0.15s ease;
        background: none;
        border: none;
        cursor: pointer;
        font: inherit;
        width: 100%;
    }

    .sidebar-logout-btn:hover {
        color: var(--text);
        background: rgba(30, 58, 95, 0.06);
    }

    .sidebar-sub-item .sidebar-nav-link {
        padding-left: 2rem;
    }

    /* Subscription status indicator */
    .sidebar-sub-status {
        padding: 0.35rem 1.25rem 0.35rem 2rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .sidebar-status-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .sidebar-status-dot-active {
        background: #4ade80;
        box-shadow: 0 0 4px rgba(74, 222, 128, 0.5);
    }

    .sidebar-status-dot-free {
        background: rgba(250, 204, 21, 0.6);
    }

    .sidebar-status-label {
        color: var(--text-muted);
    }

    .sidebar-status-label-active {
        color: #4ade80;
        font-weight: 500;
    }

    /* Credit badge inline */
    .sidebar-credit-badge {
        font-size: 0.75rem;
        font-weight: 600;
        color: #4ade80;
        background: rgba(34, 197, 94, 0.12);
        padding: 0.15rem 0.45rem;
        border-radius: 4px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Upgrade button */
    .sidebar-upgrade-btn {
        display: block;
        margin: 0.5rem 1.25rem 0.5rem 2rem;
        padding: 0.45rem 0.75rem;
        font-size: 0.8rem;
        font-weight: 600;
        color: #fff;
        background: var(--accent, #1e3a5f);
        border: none;
        border-radius: 6px;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        transition: all 0.15s ease;
    }

    .sidebar-upgrade-btn:hover {
        background: var(--accent-hover, #2a5298);
        color: #fff;
    }

    /* Disabled link */
    .sidebar-nav-link-disabled {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.6rem 1.25rem;
        padding-left: 2rem;
        font-size: 0.9rem;
        color: rgba(232, 234, 242, 0.25);
        cursor: default;
        border-left: 3px solid transparent;
    }

    .sidebar-credit-badge-zero {
        background: rgba(0, 0, 0, 0.06);
        color: #8892A6;
    }

    /* Spread link: pushes right-side badge to edge */
    .sidebar-nav-link-spread {
        justify-content: space-between;
    }

/* ── From: pages/accessibility.blade.php ── */
.policy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.policy-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text, #1A1D2E);
}

.policy-last-updated {
    color: var(--text-muted, #5A6078);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy-page section {
    margin-bottom: 2.5rem;
}

.policy-page h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text, #1A1D2E);
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    padding-bottom: 0.5rem;
}

.policy-page h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text, #1A1D2E);
}

.policy-page p {
    color: var(--text-muted, #3a4560);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-page ul {
    color: var(--text-muted, #3a4560);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-page li {
    margin-bottom: 0.75rem;
}

.policy-page strong {
    color: var(--text, #1A1D2E);
}

.policy-page a {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
}

.limitations-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.limitations-table th,
.limitations-table td {
    text-align: left;
    padding: 0.75rem;
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.limitations-table th {
    background: var(--bg-surface, #ffffff);
    color: var(--text, #1A1D2E);
    font-weight: 600;
}

.limitations-table td {
    color: var(--text-muted, #3a4560);
}

/* ── From: pages/california-privacy.blade.php ── */
.policy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.policy-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text, #1A1D2E);
}

.policy-last-updated {
    color: var(--text-muted, #5A6078);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy-page section {
    margin-bottom: 2.5rem;
}

.policy-page h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text, #1A1D2E);
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    padding-bottom: 0.5rem;
}

.policy-page h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text, #1A1D2E);
}

.policy-page p {
    color: var(--text-muted, #3a4560);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-page ul,
.policy-page ol {
    color: var(--text-muted, #3a4560);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-page li {
    margin-bottom: 0.75rem;
}

.policy-page strong {
    color: var(--text, #1A1D2E);
}

.policy-page a {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
}

.notice-box {
    background: rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.25);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.btn-primary {
    display: inline-block;
    background: var(--accent, #1e3a5f);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    margin: 1rem 0;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--accent-2, #1a2d4a);
    text-decoration: none;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.info-table th,
.info-table td {
    text-align: left;
    padding: 0.75rem;
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.info-table th {
    background: var(--bg-surface, #ffffff);
    color: var(--text, #1A1D2E);
    font-weight: 600;
}

.info-table td {
    color: var(--text-muted, #3a4560);
}

/* ── From: pages/cookie-policy.blade.php ── */
.policy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.policy-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text, #1A1D2E);
}

.policy-last-updated {
    color: var(--text-muted, #5A6078);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy-page section {
    margin-bottom: 2.5rem;
}

.policy-page h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text, #1A1D2E);
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    padding-bottom: 0.5rem;
}

.policy-page h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text, #1A1D2E);
}

.policy-page p {
    color: var(--text-muted, #3a4560);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-page ul {
    color: var(--text-muted, #3a4560);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-page li {
    margin-bottom: 0.75rem;
}

.policy-page strong {
    color: var(--text, #1A1D2E);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    text-align: left;
    padding: 0.75rem;
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.cookie-table th {
    background: var(--bg-surface, #ffffff);
    color: var(--text, #1A1D2E);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-muted, #3a4560);
}

.cookie-table code {
    background: rgba(30, 58, 95, 0.08);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    color: var(--accent, #1e3a5f);
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.85rem;
}

/* ── From: pages/dmca.blade.php ── */
.policy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.policy-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text, #1A1D2E);
}

.policy-last-updated {
    color: var(--text-muted, #5A6078);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy-page section {
    margin-bottom: 2.5rem;
}

.policy-page h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text, #1A1D2E);
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    padding-bottom: 0.5rem;
}

.policy-page h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text, #1A1D2E);
}

.policy-page p {
    color: var(--text-muted, #3a4560);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-page ul,
.policy-page ol {
    color: var(--text-muted, #3a4560);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-page li {
    margin-bottom: 0.75rem;
}

.policy-page strong {
    color: var(--text, #1A1D2E);
}

.policy-page a {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
}

/* ── From: pages/how-it-works.blade.php ── */
/* ── How It Works Page ──────────────────────────── */
.hiw-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.hiw-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.hiw-hero-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.hiw-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Process Steps ─────────────────────────────── */
.hiw-process {
    margin-bottom: 3.5rem;
}

.hiw-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hiw-process-step {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 14px;
    padding: 2rem 1.5rem 1.75rem;
    position: relative;
    transition: border-color 0.25s, transform 0.15s, box-shadow 0.25s;
}

.hiw-process-step:hover {
    border-color: rgba(30, 58, 95, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.08);
}

.hiw-process-num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(30, 58, 95, 0.06);
    line-height: 1;
    pointer-events: none;
}

.hiw-process-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.10) 0%, rgba(26, 45, 74, 0.08) 100%);
    border-radius: 12px;
    color: var(--accent, #1e3a5f);
    margin-bottom: 0.75rem;
}

.hiw-process-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}

.hiw-process-desc {
    font-size: 0.9rem;
    color: #3a4560;
    line-height: 1.6;
    margin: 0;
}

/* ── Pricing ─────────────────────────────────────── */
.hiw-pricing {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.hiw-pricing-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 0 0 1.75rem;
}

.hiw-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hiw-pricing-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 14px;
    padding: 2rem 1.5rem;
    transition: border-color 0.25s, transform 0.15s;
}

.hiw-pricing-card:hover {
    border-color: rgba(30, 58, 95, 0.4);
    transform: translateY(-1px);
}

.hiw-pricing-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent, #1e3a5f);
    margin-bottom: 0.75rem;
}

.hiw-pricing-desc {
    font-size: 0.9rem;
    color: #3a4560;
    line-height: 1.55;
    margin: 0;
}

/* ── FAQ ────────────────────────────────────────── */
.hiw-faq {
    margin-bottom: 3.5rem;
}

.hiw-faq-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 0 0 1.5rem;
    text-align: center;
}

.hiw-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hiw-faq-item {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.hiw-faq-item[open] {
    border-color: rgba(30, 58, 95, 0.20);
}

.hiw-faq-q {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hiw-faq-q::-webkit-details-marker {
    display: none;
}

.hiw-faq-q::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--accent, #1e3a5f);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s;
}

.hiw-faq-item[open] .hiw-faq-q::after {
    content: '−';
}

.hiw-faq-a {
    font-size: 0.9rem;
    color: #3a4560;
    line-height: 1.6;
    padding: 0 1.25rem 1rem;
    margin: 0;
}

/* ── CTA ─────────────────────────────────────────── */
.hiw-page-cta {
    text-align: center;
    padding: 3rem 0;
    margin-top: 1rem;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.06) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 16px;
}

.hiw-page-cta-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.5rem;
}

.hiw-page-cta-desc {
    font-size: 1rem;
    color: var(--text-muted, #5A6078);
    margin: 0 0 1.5rem;
    line-height: 1.55;
}

.hiw-page-cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent, #1e3a5f);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.25s;
}

.hiw-page-cta-btn:hover {
    background: #2a5298;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
    text-decoration: none;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
    .hiw-process-grid {
        grid-template-columns: 1fr;
    }
    .hiw-pricing-grid {
        grid-template-columns: 1fr;
    }
    .hiw-hero-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hiw-process-step {
        padding: 1.5rem 1.25rem 1.25rem;
    }
}

/* ── From: pages/pricing.blade.php ── */
/* ── Pricing Page ─────────────────────────────────── */
.pricing-page {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
    color: var(--text, #1A1D2E);
}

/* ── Hero ────────────────────────────────────────── */
.pricing-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}
.pricing-hero-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.75rem;
}
.pricing-hero-subtitle {
    font-size: 1.1rem;
    color: #3a4560;
    line-height: 1.6;
    max-width: 36rem;
    margin: 0 auto;
}

/* ── Billing Toggle ──────────────────────────────── */
.pricing-toggle-section {
    text-align: center;
    margin-bottom: 2.5rem;
}
.pricing-toggle-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 9999px;
    padding: 0.35rem 1rem;
}
.pricing-toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #5A6078;
    cursor: pointer;
    transition: color 0.2s;
}
.pricing-toggle-label.active {
    color: var(--text, #1A1D2E);
}
.pricing-toggle-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a5f, #1a2d4a);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    margin-left: 0.4rem;
    vertical-align: middle;
}
.pricing-toggle-switch {
    position: relative;
    display: inline-block;
    width: 2.5rem;
    height: 1.4rem;
}
.pricing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.pricing-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(232, 234, 242, 0.15);
    border-radius: 9999px;
    transition: background 0.3s;
    cursor: pointer;
}
.pricing-toggle-slider::before {
    content: '';
    position: absolute;
    height: 1rem;
    width: 1rem;
    left: 0.2rem;
    bottom: 0.2rem;
    background: var(--text, #1A1D2E);
    border-radius: 50%;
    transition: transform 0.3s;
}
.pricing-toggle-switch input:checked + .pricing-toggle-slider {
    background: linear-gradient(135deg, #1e3a5f, #1a2d4a);
}
.pricing-toggle-switch input:checked + .pricing-toggle-slider::before {
    transform: translateX(1.1rem);
}

/* ── Pricing Cards ────────────────────────────────── */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}
.pricing-cards--two {
    grid-template-columns: repeat(2, 1fr);
}
.pricing-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 14px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, transform 0.15s;
    position: relative;
}
.pricing-card:hover {
    border-color: rgba(30, 58, 95, 0.4);
    transform: translateY(-2px);
}
.pricing-card--pro {
    border-color: rgba(30, 58, 95, 0.25);
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.06) 0%, var(--bg-surface, #ffffff) 100%);
    box-shadow: 0 0 30px rgba(30, 58, 95, 0.06);
}
.pricing-card--pro:hover {
    border-color: rgba(59, 130, 246, 0.6);
}
.pricing-card-badge {
    position: absolute;
    top: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e3a5f, #1a2d4a);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-card-header {
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}
.pricing-card--pro .pricing-card-header {
    padding-top: 1rem;
}
.pricing-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.5rem;
}
.pricing-card-price {
    margin-bottom: 0.5rem;
}
.pricing-card-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent, #1e3a5f);
}
.pricing-card--pro .pricing-card-amount {
    background: linear-gradient(135deg, #1e3a5f, #1a2d4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-card-period {
    font-size: 0.9rem;
    color: #5A6078;
}
.pricing-card-tagline {
    font-size: 0.85rem;
    color: #5A6078;
    line-height: 1.5;
    margin: 0;
}
.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}
.pricing-card-features li {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #3a4560;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.pricing-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}
.pricing-card-cta {
    display: block;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.pricing-card-cta--primary {
    background: linear-gradient(135deg, #1e3a5f, #1a2d4a);
    color: #fff;
}
.pricing-card-cta--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.25);
}
.pricing-card-cta--secondary {
    background: transparent;
    border: 1px solid var(--border, rgba(255,255,255,0.15));
    color: var(--text, #1A1D2E);
}
.pricing-card-cta--secondary:hover {
    border-color: rgba(59, 130, 246, 0.5);
    color: var(--accent, #1e3a5f);
}

/* ── Comparison Table ─────────────────────────────── */
.pricing-comparison {
    margin-bottom: 3.5rem;
}
.pricing-comparison-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    text-align: center;
    margin-bottom: 1.75rem;
}
.pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 14px;
    overflow: hidden;
}
.pricing-table thead th {
    background: rgba(30, 58, 95, 0.06);
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    text-align: center;
    border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
}
.pricing-table thead th:first-child {
    text-align: left;
}
.pricing-table--highlight {
    background: rgba(30, 58, 95, 0.08);
}
.pricing-table tbody td {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    color: #3a4560;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-table tbody td:first-child {
    text-align: left;
    color: var(--text, #1A1D2E);
    font-weight: 500;
}
.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

/* ── FAQ ────────────────────────────────────────── */
.pricing-faq {
    margin-bottom: 3.5rem;
}
.pricing-faq-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    text-align: center;
    margin-bottom: 1.5rem;
}
.pricing-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 48rem;
    margin: 0 auto;
}
.pricing-faq-item {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 10px;
    overflow: hidden;
}
.pricing-faq-item[open] {
    border-color: rgba(30, 58, 95, 0.20);
}
.pricing-faq-q {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pricing-faq-q::-webkit-details-marker { display: none; }
.pricing-faq-q::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--accent, #1e3a5f);
    transition: transform 0.2s;
}
.pricing-faq-item[open] .pricing-faq-q::after {
    content: '−';
}
.pricing-faq-a {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #3a4560;
    padding: 0 1.25rem 1rem;
    margin: 0;
}

/* ── Bottom CTA ──────────────────────────────────── */
.pricing-cta-section {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border, rgba(255,255,255,0.08));
}
.pricing-cta-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.5rem;
}
.pricing-cta-desc {
    font-size: 1rem;
    color: #5A6078;
    margin: 0 0 1.5rem;
}
.pricing-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.pricing-cta-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s;
}
.pricing-cta-btn--primary {
    background: linear-gradient(135deg, #1e3a5f, #1a2d4a);
    color: #fff;
}
.pricing-cta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.25);
}
.pricing-cta-btn--secondary {
    background: transparent;
    border: 1px solid var(--border, rgba(255,255,255,0.15));
    color: var(--text, #1A1D2E);
}
.pricing-cta-btn--secondary:hover {
    border-color: rgba(59, 130, 246, 0.5);
    color: var(--accent, #1e3a5f);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
    .pricing-cards,
    .pricing-cards--two {
        grid-template-columns: 1fr;
    }
    .pricing-hero-heading {
        font-size: 1.75rem;
    }
    .pricing-table-wrap {
        font-size: 0.8rem;
    }
    .pricing-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 480px) {
    .pricing-card {
        padding: 1.5rem 1.25rem;
    }
    .pricing-card-amount {
        font-size: 1.75rem;
    }
    .pricing-hero-heading {
        font-size: 1.5rem;
    }
}

/* ── From: pages/seller-of-travel.blade.php ── */
.policy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.policy-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text, #1A1D2E);
}

.policy-last-updated {
    color: var(--text-muted, #5A6078);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy-page section {
    margin-bottom: 2.5rem;
}

.policy-page h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text, #1A1D2E);
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    padding-bottom: 0.5rem;
}

.policy-page h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text, #1A1D2E);
}

.policy-page p {
    color: var(--text-muted, #3a4560);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-page ul,
.policy-page ol {
    color: var(--text-muted, #3a4560);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-page li {
    margin-bottom: 0.75rem;
}

.policy-page strong {
    color: var(--text, #1A1D2E);
}

.policy-page a {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
}

.notice-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.notice-box p {
    margin-bottom: 1rem;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

.notice-box ul {
    margin: 1rem 0;
}

/* ── From: partials/pagination.blade.php ── */
.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.pagination-info {
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
}

.pagination-links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    height: 2.2rem;
    padding: 0 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-muted, #3a4560);
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: pointer;
}

a.pagination-btn:hover {
    border-color: rgba(30, 58, 95, 0.4);
    color: var(--accent, #1e3a5f);
    text-decoration: none;
}

.pagination-active {
    background: rgba(30, 58, 95, 0.10);
    border-color: rgba(59, 130, 246, 0.4);
    color: var(--accent, #1e3a5f);
    font-weight: 700;
}

.pagination-disabled {
    opacity: 0.4;
    cursor: default;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    height: 2.2rem;
    padding: 0 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted, #8892A6);
}

/* ── From: news/index.blade.php ── */
.news-hero {
    text-align: center;
    padding: 2rem 0 1.5rem;
}

.news-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.news-hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Category Bar ──────────────────────────────── */
.category-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 1.25rem 0 2rem;
    padding: 0;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text);
    transition: all 0.2s;
}

.category-pill:hover {
    border-color: var(--accent-2);
    background: rgba(26, 45, 74, 0.08);
    color: var(--accent-2);
    text-decoration: none;
}

.category-pill .pill-count {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255,255,255,0.06);
    padding: 0.1rem 0.45rem;
    border-radius: 9999px;
}

.category-bar-divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.news-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.article-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.article-card:hover {
    border-color: rgba(30, 58, 95, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.article-card-banner {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.article-card-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(30, 58, 95, 0.10) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.article-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.article-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
}

.article-card-title a:hover {
    color: var(--accent);
    text-decoration: none;
}

.article-card-summary {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.3rem; }
.article-tag { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; text-decoration: none; }
.article-tag.tag { background: rgba(59,130,246,0.12); color: var(--accent); }
.article-tag.category { background: rgba(139,92,246,0.12); color: var(--accent-2); }
.article-tag:hover { opacity: 0.85; }

.article-card-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

.article-card-read-more:hover {
    text-decoration: underline;
}

.news-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-muted);
}

.news-empty h2 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.news-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.news-pagination a,
.news-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.news-pagination a:hover {
    background: rgba(30, 58, 95, 0.08);
    color: var(--text);
    border-color: rgba(30, 58, 95, 0.25);
    text-decoration: none;
}

.news-pagination .active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.news-pagination .disabled {
    opacity: 0.35;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .news-hero h1 {
        font-size: 1.5rem;
    }

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

/* ── From: news/show.blade.php ── */
/* ── Two-Column Layout ─────────────────────────── */
.news-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

/* ── Article Column ─────────────────────────────── */
.article-detail {
    min-width: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span.sep { color: rgba(232,234,242,0.25); }

.article-banner {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.75rem;
}

.article-banner-placeholder {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(139,92,246,0.12));
    border-radius: 12px;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 3rem;
}

.article-header {
    margin-bottom: 1.75rem;
}

.article-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.article-meta .author {
    color: var(--accent);
    font-weight: 600;
}

.article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.article-tag { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; text-decoration: none; }
.article-tag.tag { background: rgba(59,130,246,0.12); color: var(--accent); }
.article-tag.category { background: rgba(139,92,246,0.12); color: var(--accent-2); }
.article-tag:hover { opacity: 0.85; }

.article-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text);
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
    color: var(--text);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.article-body h2 { font-size: 1.5rem; }
.article-body h3 { font-size: 1.25rem; }

.article-body p {
    margin-bottom: 1rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.article-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: rgba(59,130,246,0.06);
    border-radius: 0 8px 8px 0;
    color: var(--text-muted);
    font-style: italic;
}

.article-body code {
    background: rgba(255,255,255,0.06);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.article-body pre {
    background: rgba(0,0,0,0.3);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.article-body pre code {
    background: none;
    padding: 0;
}

.article-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1rem 0;
}

.article-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-body a.hotel-mention {
    color: var(--accent-2);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(139,92,246,0.4);
    text-underline-offset: 2px;
}
.article-body a.hotel-mention:hover {
    text-decoration-color: var(--accent-2);
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}
.article-body th,
.article-body td {
    border: 1px solid var(--border);
    padding: 0.6rem 0.8rem;
    text-align: left;
}
.article-body th {
    background: rgba(255,255,255,0.04);
    font-weight: 600;
}

.related-articles { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.related-articles h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.related-card { display: flex; flex-direction: column; background: #ffffff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; text-decoration: none; transition: border-color 0.2s; }
.related-card:hover { border-color: rgba(59,130,246,0.3); }
.related-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.related-card-body { padding: 0.75rem; }
.related-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.related-card time { font-size: 0.75rem; color: var(--text-muted); }

.article-back {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.article-back a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
}
.article-back a:hover {
    text-decoration: underline;
}

/* ── Sidebar ────────────────────────────────────── */
.sidebar {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-section {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
}

.sidebar-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ── Lead Funnel Form ────────────────────────────── */
.sidebar-form {
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(139,92,246,0.08));
    border: 1px solid rgba(59,130,246,0.2);
}

.sidebar-form-heading {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.sidebar-form-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.sidebar-form .form-group {
    margin-bottom: 1rem;
}

.sidebar-form .form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(232,234,242,0.7);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

.sidebar-form .form-input {
    width: 100%;
    padding: 0.55rem 0.75rem;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}

.sidebar-form .form-input:focus {
    border-color: var(--accent);
}

.sidebar-form .form-input::placeholder {
    color: rgba(232,234,242,0.3);
}

.sidebar-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.sidebar-form .sidebar-submit {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    transition: opacity 0.2s, transform 0.15s;
    margin-top: 0.25rem;
}

.sidebar-form .sidebar-submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.sidebar-form .sidebar-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.sidebar-form .autocomplete-wrapper {
    position: relative;
}

.sidebar-form .autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.sidebar-form .autocomplete-dropdown.visible {
    display: block;
}

.sidebar-form .autocomplete-item {
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.15s;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-form .autocomplete-item:last-child {
    border-bottom: none;
}

.sidebar-form .autocomplete-item:hover,
.sidebar-form .autocomplete-item.active {
    background: rgba(59,130,246,0.12);
}

.sidebar-form .sot-notice {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.25);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: #fca5a5;
    line-height: 1.3;
}

/* ── Sidebar: Categories ────────────────────────── */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
}

.category-list a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.category-list .count {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
}

/* ── Sidebar: Latest Articles ────────────────────── */
.latest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

.latest-list li:last-child {
    border-bottom: none;
}

.latest-list a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.35;
    display: block;
}

.latest-list a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.latest-list time {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.2rem;
}

/* ── Sidebar: Archive ──────────────────────────── */
.archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.archive-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
}

.archive-list li:last-child {
    border-bottom: none;
}

.archive-list a {
    color: var(--text);
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.archive-list a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.archive-list .count {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .news-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}

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

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

/* ── Translation Notice ─────────────────────────── */
.translation-notice {
    background: rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.25);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.translation-notice .icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.translation-notice a {
    color: var(--accent);
    text-decoration: underline;
}

.translation-notice a:hover {
    color: var(--accent-2);
}

/* ── Share Buttons ─────────────────────────────── */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.share-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    opacity: 0.7;
    margin-right: 0.25rem;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    line-height: 1.2;
}
.share-btn:hover {
    background: rgba(0, 0, 0, 0.10);
    border-color: var(--accent);
    color: var(--accent);
}
.share-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.share-btn--facebook:hover { border-color: #1877F2; color: #1877F2; }
.share-btn--twitter:hover  { border-color: #1DA1F2; color: #1DA1F2; }
.share-btn--linkedin:hover  { border-color: #0A66C2; color: #0A66C2; }
.share-btn--fb-page { border-color: rgba(24,119,242,0.25); color: #1877F2; background: rgba(24,119,242,0.04); cursor: pointer; }
.share-btn--fb-page:hover { background: rgba(24,119,242,0.12); border-color: #1877F2; }
.share-btn--linkedin-page { border-color: rgba(10,102,194,0.25); color: #0A66C2; background: rgba(10,102,194,0.04); cursor: pointer; }
.share-btn--linkedin-page:hover { background: rgba(10,102,194,0.12); border-color: #0A66C2; }
.share-toast {
    display: inline-block;
    margin-left: 0.35rem;
    font-size: 0.7rem;
    color: #4ade80;
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.25);
    border-radius: 4px;
    animation: fadeInOut 2s forwards;
}
@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

/* ── From: news/tag.blade.php ── */
.tag-hero {
    text-align: center;
    padding: 2rem 0 2.5rem;
}

.tag-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: rgba(30, 58, 95, 0.10);
    color: var(--accent);
    vertical-align: middle;
}

.tag-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.article-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.article-card:hover {
    border-color: rgba(30, 58, 95, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.article-card-banner {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.article-card-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(30, 58, 95, 0.10) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.article-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.article-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
}

.article-card-title a:hover {
    color: var(--accent);
    text-decoration: none;
}

.article-card-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.3rem; }
.article-tag { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; text-decoration: none; }
.article-tag.tag { background: rgba(59,130,246,0.12); color: var(--accent); }
.article-tag.category { background: rgba(139,92,246,0.12); color: var(--accent-2); }
.article-tag:hover { opacity: 0.85; }

.article-card-summary {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

.article-card-read-more:hover {
    text-decoration: underline;
}

.news-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-muted);
}

.news-empty h2 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.news-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.news-pagination a,
.news-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.news-pagination a:hover {
    background: rgba(30, 58, 95, 0.08);
    color: var(--text);
    border-color: rgba(30, 58, 95, 0.25);
    text-decoration: none;
}

.news-pagination .active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.news-pagination .disabled {
    opacity: 0.35;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tag-hero h1 {
        font-size: 1.5rem;
    }

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

/* ── From: auth/login.blade.php ── */
.login-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 72px - 200px);
    padding: 2rem 1rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Alert banner for homepage redirects */
.login-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 1100px;
    padding: 0.85rem 1.25rem;
    margin-bottom: 1.5rem;
    background: rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.25);
    border-radius: 10px;
    color: var(--text, #1A1D2E);
    font-size: 0.9rem;
    line-height: 1.5;
    animation: alertSlideIn 0.3s ease-out;
}

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

.login-alert-icon { font-size: 1.2rem; flex-shrink: 0; }
.login-alert-text { flex: 1; }

.login-alert-close {
    background: none;
    border: none;
    color: #5A6078;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0 0.25rem;
    line-height: 1;
    transition: color 0.2s;
}
.login-alert-close:hover { color: var(--text, #1A1D2E); }

/* Two-column layout */
.login-layout {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    width: 100%;
}

/* Left side: domain info */
.login-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.06) 0%, rgba(26, 45, 74, 0.04) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
}

.login-info-content {
    max-width: 420px;
}

.login-info-headline {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.login-info-tagline {
    font-size: 0.95rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.login-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.login-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.login-benefit-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 95, 0.08);
    border-radius: 8px;
    margin-top: 0.1rem;
}

.login-benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.login-benefit-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
}

.login-benefit-text span {
    font-size: 0.82rem;
    color: var(--text-muted, #5A6078);
    line-height: 1.45;
}

/* Right side: login form */
.login-form-side {
    flex: 0 0 420px;
    display: flex;
    align-items: center;
}

.login-card {
    width: 100%;
    background: var(--bg-surface, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2.5rem 2rem;
}

.login-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 2rem;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #3a4560;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text, #1A1D2E);
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-input::placeholder {
    color: #8892A6;
}

.form-input:focus {
    border-color: var(--accent, #1e3a5f);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.10);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error {
    font-size: 0.8rem;
    color: #ef4444;
}

.login-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent, #1e3a5f);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: inherit;
}

.login-btn:hover {
    background: #2a5298;
}

.login-btn:active {
    transform: scale(0.98);
}

.login-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.partner-link {
    display: block;
    text-align: center;
    font-size: 0.82rem;
    color: #8892A6;
    text-decoration: none;
    margin-top: 0.65rem;
    transition: color 0.2s;
}

.partner-link:hover {
    color: #2a5298;
}

.login-status {
    font-size: 0.85rem;
    color: #10b981;
    text-align: center;
    padding: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Code popup overlay */
.code-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.code-overlay.active {
    display: flex;
}

.code-popup {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    animation: popupIn 0.25s ease-out;
}

@keyframes popupIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.code-popup-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1A1D2E;
    margin: 0 0 0.4rem;
}

.code-popup-subtitle {
    font-size: 0.85rem;
    color: #5A6078;
    margin: 0 0 1.75rem;
}

.code-popup-email {
    color: #1e3a5f;
}

/* 6 digit boxes */
.digit-row {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.digit-box {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'SF Mono', 'Fira Code', monospace;
    color: #1A1D2E;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    outline: none;
    caret-color: #1e3a5f;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.digit-box:focus {
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.15);
}

.digit-box.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.code-popup-error {
    font-size: 0.82rem;
    color: #ef4444;
    margin-bottom: 1rem;
    display: none;
}

.code-popup-error.visible {
    display: block;
}

.verify-btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #1e3a5f;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    margin-bottom: 1rem;
}

.verify-btn:hover {
    background: #2a5298;
}

.verify-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.resend-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: #8892A6;
}

.resend-btn {
    background: none;
    border: none;
    color: #1e3a5f;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.resend-btn:hover {
    color: #2a5298;
}

.resend-btn:disabled {
    color: rgba(232, 234, 242, 0.25);
    cursor: not-allowed;
    text-decoration: none;
}

.change-email-btn {
    background: none;
    border: none;
    color: #8892A6;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    margin-top: 0.75rem;
    font-family: inherit;
}

.change-email-btn:hover {
    color: #3a4560;
}

@media (max-width: 768px) {
    .login-layout {
        flex-direction: column-reverse;
        gap: 1.5rem;
    }

    .login-form-side {
        flex: none;
        width: 100%;
    }

    .login-info {
        padding: 1.75rem 1.25rem;
    }

    .login-info-headline {
        font-size: 1.35rem;
    }

    .login-benefit-icon {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 2rem 1.5rem;
    }

    .login-heading {
        font-size: 1.5rem;
    }

    .login-info-headline {
        font-size: 1.2rem;
    }

    .digit-box {
        width: 40px;
        height: 48px;
        font-size: 1.25rem;
    }

    .code-popup {
        padding: 1.5rem 1rem;
    }

    .login-alert {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* ── From: rooming-list/guest-locked.blade.php ── */
.guest-page { max-width: 720px; margin: 0 auto; }
.guest-locked {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 2rem;
}
.guest-locked h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1rem;
}
.guest-locked p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0 0 1.5rem;
    line-height: 1.6;
}
.guest-locked .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

/* ── From: rooming-list/guest.blade.php ── */
.guest-page { max-width: 720px; margin: 0 auto; padding: 2rem 1rem; }

.guest-event-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}
.guest-event-card h1 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin: 0 0 0.5rem; }
.guest-event-card .hotel-name { font-size: 1.25rem; color: var(--accent); margin-bottom: 0.25rem; }
.guest-event-card .event-meta { color: var(--text-muted); font-size: 0.95rem; margin: 0.5rem 0; }
.guest-event-card .event-dates { color: var(--text-muted); font-size: 0.9rem; }

.guest-block-summary {
    background: rgba(30, 58, 95, 0.06);
    border: 1px solid rgba(30, 58, 95, 0.15);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
}
.guest-block-summary h2 { font-size: 1rem; font-weight: 600; color: var(--text); margin: 0 0 0.5rem; }
.guest-block-summary .block-count { font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.guest-block-summary .block-type-row { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 0.5rem; }
.guest-block-summary .type-avail { font-size: 0.9rem; color: var(--text-muted); }

.guest-claimed-card {
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}
.guest-claimed-card h2 { font-size: 1.2rem; font-weight: 600; color: #34d399; margin: 0 0 1rem; }
.guest-claimed-card .claimed-info { font-size: 0.95rem; color: var(--text-muted); margin: 0.25rem 0; }
.guest-claimed-card .claimed-info strong { color: var(--text); }
.guest-claimed-card .confirmation-number { margin-top: 1rem; font-size: 0.85rem; color: var(--text-muted); }

.guest-form {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}
.guest-form h2 { font-size: 1.1rem; font-weight: 600; color: var(--text); margin: 0 0 1.5rem; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.form-group input, .form-group select {
    width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
    color: var(--text); padding: 0.6rem 0.75rem; border-radius: 6px; font-size: 0.9rem;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--accent); }

.room-type-selector { margin-bottom: 1.5rem; }
.room-type-selector .type-option {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 8px;
    margin-bottom: 0.5rem; cursor: pointer; transition: border-color 0.2s;
}
.room-type-selector .type-option:hover { border-color: var(--accent); }
.room-type-selector .type-option input[type="radio"] { width: auto; }
.room-type-selector .type-option.selected { border-color: var(--accent); background: rgba(59,130,246,0.05); }
.room-type-selector .type-option .type-name { font-weight: 600; color: var(--text); }
.room-type-selector .type-option .type-avail { font-size: 0.8rem; color: var(--text-muted); margin-left: 0.5rem; }

.btn-claim {
    display: inline-block; background: var(--accent); color: #fff; border: none;
    padding: 0.75rem 2rem; border-radius: 8px; font-size: 1rem; font-weight: 600;
    cursor: pointer; text-decoration: none; width: 100%;
}
.btn-claim:hover { background: #2a5298; }
.btn-claim:disabled { background: var(--text-muted); cursor: not-allowed; }

.guest-no-rooms {
    text-align: center; padding: 3rem 1rem; color: var(--text-muted);
}

@media (max-width: 640px) {
    .guest-page { padding: 1rem 0.75rem; }
    .guest-event-card, .guest-form { padding: 1.25rem; }
    .guest-block-summary .block-type-row { flex-direction: column; gap: 0.5rem; }
}

/* ── From: rooming-list/index.blade.php ── */
.rl-index { max-width: 960px; }
.rl-index-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--text); }

.rl-cards { display: flex; flex-direction: column; gap: 1rem; }

.rl-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
    color: inherit;
}
.rl-card:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 12px rgba(30, 58, 95, 0.08);
}

.rl-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem 0.5rem;
}
.rl-card-hotel { font-size: 1.05rem; font-weight: 600; color: var(--text); }
.rl-card-location { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.15rem; }

.rl-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}
.rl-badge-draft { background: rgba(250, 204, 21, 0.15); color: #fbbf24; }
.rl-badge-shared { background: rgba(52, 211, 153, 0.15); color: #34d399; }
.rl-badge-locked { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

.rl-card-body {
    padding: 0.5rem 1.25rem 0.75rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.rl-stat { display: flex; flex-direction: column; }
.rl-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.rl-stat-value { font-size: 1.1rem; font-weight: 600; margin-top: 0.1rem; }
.rl-stat-value.assigned { color: #34d399; }
.rl-stat-value.remaining { color: #fbbf24; }

.rl-card-dates {
    padding: 0 1.25rem 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rl-progress-wrapper {
    padding: 0 1.25rem 1rem;
}
.rl-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.rl-progress-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 3px;
    overflow: hidden;
}
.rl-progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}
.rl-progress-fill.status-draft { background: #fbbf24; }
.rl-progress-fill.status-shared { background: #34d399; }
.rl-progress-fill.status-locked { background: #ef4444; }

.rl-card-footer {
    display: flex;
    justify-content: flex-end;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--border);
}
.rl-manage-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.15s ease;
}
.rl-manage-link:hover {
    color: var(--accent-hover, #2a5298);
}

.rl-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-muted);
}
.rl-empty-icon { font-size: 2.5rem; margin-bottom: 0.75rem; opacity: 0.4; }
.rl-empty-text { font-size: 1rem; }

.rl-pagination { margin-top: 1.5rem; }

/* ── From: rooming-list/show.blade.php ── */
.rooming-list-header { margin-bottom: 2rem; }
.rooming-list-header h1 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.rooming-list-header .subtitle { color: var(--text-muted); font-size: 0.9rem; }

.rl-stats { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.rl-stat { background: #ffffff; border: 1px solid var(--border); border-radius: 8px; padding: 1rem 1.25rem; min-width: 140px; }
.rl-stat-label { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.rl-stat-value { font-size: 1.4rem; font-weight: 600; margin-top: 0.25rem; }
.rl-stat-value.assigned { color: #34d399; }
.rl-stat-value.remaining { color: #fbbf24; }

.rl-block-header { background: #ffffff; border: 1px solid var(--border); border-radius: 8px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.rl-block-header h3 { font-size: 1rem; margin: 0 0 0.75rem; }
.rl-block-type-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.rl-block-type-label { font-weight: 600; min-width: 120px; }
.rl-block-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
.rl-block-bar-fill { height: 100%; background: var(--accent); border-radius: 4px; }
.rl-block-type-count { font-size: 0.85rem; color: var(--text-muted); min-width: 80px; }

.rl-actions { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; align-items: center; }
.rl-actions .btn { padding: 0.5rem 1rem; border-radius: 6px; font-size: 0.875rem; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-primary { background: var(--accent); color: #fff; border: none; }
.btn-primary:hover { background: #2a5298; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-danger { background: #dc2626; color: #fff; border: none; }
.btn-danger:hover { background: #b91c1c; }

.rl-share-box { background: #ffffff; border: 1px solid var(--border); border-radius: 8px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.rl-share-box label { font-size: 0.85rem; color: var(--text-muted); display: block; margin-bottom: 0.5rem; }
.rl-share-box .share-url { display: flex; gap: 0.5rem; }
.rl-share-box input[type="text"] { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text); padding: 0.5rem 0.75rem; border-radius: 4px; font-size: 0.85rem; }

.rl-table-wrapper { overflow-x: auto; margin-bottom: 1.5rem; }
.rl-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.rl-table th { background: #ffffff; color: var(--text-muted); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em; padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.rl-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
.rl-table tr:hover td { background: rgba(59, 130, 246, 0.04); }

.status-badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 500; }
.status-assigned { background: rgba(52, 211, 153, 0.15); color: #34d399; }
.status-confirmed { background: rgba(96, 165, 250, 0.15); color: #2a5298; }

.add-entry-form { background: #ffffff; border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; margin-bottom: 1.5rem; }
.add-entry-form h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.form-group input, .form-group select, .form-group textarea {
    background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text);
    padding: 0.5rem 0.75rem; border-radius: 4px; font-size: 0.9rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group.full-width { grid-column: 1 / -1; }

.rl-visits { margin-top: 2rem; }
.rl-visits h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.rl-visits table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.rl-visits th { background: #ffffff; color: var(--text-muted); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.05em; padding: 0.5rem 0.75rem; text-align: left; border-bottom: 1px solid var(--border); }
.rl-visits td { padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.rl-visits .action-badge { display: inline-block; padding: 0.15rem 0.5rem; border-radius: 9999px; font-size: 0.7rem; font-weight: 500; }
.action-view { background: rgba(96,165,250,0.15); color: #2a5298; }
.action-claim { background: rgba(52,211,153,0.15); color: #34d399; }
.action-thank_you { background: rgba(251,191,36,0.15); color: #fbbf24; }

@media (max-width: 640px) {
    .form-grid { grid-template-columns: 1fr; }
    .rl-stats { flex-direction: column; }
    .rl-stat { min-width: auto; }
}

/* ── From: rooming-list/thanks.blade.php ── */
.thanks-page { max-width: 600px; margin: 0 auto; text-align: center; }

.thanks-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
}
.thanks-card h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #34d399;
    margin: 0 0 0.5rem;
}
.thanks-card .subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0 0 2rem;
}

.thanks-details {
    background: rgba(30, 58, 95, 0.04);
    border: 1px solid rgba(30, 58, 95, 0.10);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}
.thanks-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.thanks-detail-row:last-child {
    border-bottom: none;
}
.thanks-detail-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.thanks-detail-value {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
}

.confirmation-number {
    background: rgba(30, 58, 95, 0.06);
    border: 1px dashed rgba(59, 130, 246, 0.4);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.confirmation-number .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.confirmation-number .number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}
.thanks-actions a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
}
.thanks-actions a:hover {
    text-decoration: underline;
}

/* ── From: support/create.blade.php ── */
.support-page {
        max-width: 700px;
        margin: 0 auto;
    }

    .support-breadcrumb {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 1.5rem;
    }

    .support-breadcrumb a {
        color: var(--accent);
        text-decoration: none;
    }

    .support-breadcrumb a:hover {
        text-decoration: underline;
    }

    .support-notice {
        background: rgba(234, 179, 8, 0.1);
        border: 1px solid rgba(234, 179, 8, 0.3);
        border-radius: 8px;
        padding: 0.75rem 1rem;
        margin-bottom: 1.5rem;
        color: #eab308;
        font-size: 0.9rem;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .support-notice-icon {
        flex-shrink: 0;
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .support-form {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .form-group label {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text);
    }

    .form-group input[type="text"],
    .form-group textarea {
        background: #131525;
        border: 1px solid var(--border);
        border-radius: 6px;
        padding: 0.65rem 0.85rem;
        color: var(--text);
        font-size: 0.9rem;
        font-family: inherit;
        transition: border-color 0.2s;
        width: 100%;
    }

    .form-group input[type="text"]:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--accent);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 160px;
    }

    .char-counter {
        font-size: 0.8rem;
        color: var(--text-muted);
        text-align: right;
    }

    .char-counter.near-limit {
        color: #eab308;
    }

    .char-counter.at-limit {
        color: #ef4444;
    }

    .form-error {
        color: #ef4444;
        font-size: 0.8rem;
        margin-top: 0.2rem;
    }

    .btn-submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--accent);
        color: #fff;
        padding: 0.65rem 1.5rem;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 500;
        border: none;
        cursor: pointer;
        transition: background 0.2s;
        align-self: flex-start;
    }

    .btn-submit:hover {
        background: #2a5298;
    }

/* ── From: support/index.blade.php ── */
.support-page {
        max-width: 900px;
        margin: 0 auto;
    }

    .support-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .support-header h1 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .ticket-count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(30, 58, 95, 0.10);
        color: var(--accent);
        font-size: 0.8rem;
        font-weight: 600;
        padding: 0.15rem 0.55rem;
        border-radius: 9999px;
        min-width: 1.5rem;
    }

    .btn-new-ticket {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: var(--accent);
        color: #fff;
        padding: 0.5rem 1.2rem;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 500;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: background 0.2s;
    }

    .btn-new-ticket:hover {
        background: #2a5298;
        text-decoration: none;
    }

    .ticket-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .ticket-card {
        background: #131525;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 1rem 1.25rem;
        transition: border-color 0.2s;
    }

    .ticket-card:hover {
        border-color: rgba(30, 58, 95, 0.25);
    }

    .ticket-card-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.5rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .ticket-card-subject {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text);
        text-decoration: none;
    }

    .ticket-card-subject:hover {
        color: var(--accent);
        text-decoration: underline;
    }

    .ticket-card-meta {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    .status-badge {
        display: inline-flex;
        align-items: center;
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.15rem 0.6rem;
        border-radius: 9999px;
        text-transform: capitalize;
    }

    .status-open {
        background: rgba(34, 197, 94, 0.15);
        color: #22c55e;
    }

    .status-awaiting_customer {
        background: rgba(234, 179, 8, 0.15);
        color: #eab308;
    }

    .status-awaiting_agent {
        background: rgba(30, 58, 95, 0.10);
        color: #1e3a5f;
    }

    .status-closed {
        background: rgba(107, 114, 128, 0.15);
        color: #6b7280;
    }

    .ticket-card-preview {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-top: 0.35rem;
        line-height: 1.4;
    }

    .empty-state {
        text-align: center;
        padding: 3rem 1rem;
    }

    .empty-state p {
        color: var(--text-muted);
        margin-bottom: 1.25rem;
        font-size: 0.95rem;
    }

/* ── From: support/show.blade.php ── */
.support-page {
        max-width: 700px;
        margin: 0 auto;
    }

    .support-breadcrumb {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 1.5rem;
    }

    .support-breadcrumb a {
        color: var(--accent);
        text-decoration: none;
    }

    .support-breadcrumb a:hover {
        text-decoration: underline;
    }

    .ticket-detail-card {
        background: #131525;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .ticket-detail-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .ticket-detail-header h1 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text);
    }

    .status-badge {
        display: inline-flex;
        align-items: center;
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.15rem 0.6rem;
        border-radius: 9999px;
        text-transform: capitalize;
    }

    .status-open {
        background: rgba(34, 197, 94, 0.15);
        color: #22c55e;
    }

    .status-awaiting_customer {
        background: rgba(234, 179, 8, 0.15);
        color: #eab308;
    }

    .status-awaiting_agent {
        background: rgba(30, 58, 95, 0.10);
        color: #1e3a5f;
    }

    .status-closed {
        background: rgba(107, 114, 128, 0.15);
        color: #6b7280;
    }

    .ticket-detail-meta {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    /* Comment thread */
    .comment-thread {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .comment-card {
        border-radius: 8px;
        padding: 1rem 1.15rem;
        position: relative;
    }

    .comment-card.comment-customer {
        background: rgba(30, 58, 95, 0.06);
        border: 1px solid rgba(30, 58, 95, 0.10);
    }

    .comment-card.comment-staff {
        background: rgba(34, 197, 94, 0.08);
        border: 1px solid rgba(34, 197, 94, 0.15);
        margin-left: 2rem;
    }

    .comment-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        flex-wrap: wrap;
    }

    .comment-author {
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--text);
    }

    .comment-date {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    .comment-staff-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(30, 58, 95, 0.15);
        color: #1e3a5f;
        font-size: 0.7rem;
        font-weight: 600;
        padding: 0.1rem 0.45rem;
        border-radius: 9999px;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .comment-body {
        font-size: 0.9rem;
        color: var(--text);
        line-height: 1.6;
        word-break: break-word;
    }

    /* Reply form */
    .reply-form-card {
        background: #131525;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 1.25rem;
    }

    .reply-form-card h2 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text);
        margin-bottom: 0.75rem;
    }

    .reply-textarea {
        width: 100%;
        min-height: 100px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 6px;
        color: var(--text);
        font-family: inherit;
        font-size: 0.9rem;
        padding: 0.75rem;
        resize: vertical;
        margin-bottom: 0.5rem;
    }

    .reply-textarea:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 2px rgba(30, 58, 95, 0.15);
    }

    .reply-textarea::placeholder {
        color: var(--text-muted);
    }

    .reply-notice {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 0.75rem;
    }

    .reply-submit {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: var(--accent);
        color: #fff;
        padding: 0.5rem 1.2rem;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 500;
        border: none;
        cursor: pointer;
        transition: background 0.2s;
    }

    .reply-submit:hover {
        background: #2a5298;
    }

    /* Locked notice */
    .ticket-locked-notice {
        background: rgba(245, 158, 11, 0.1);
        border: 1px solid rgba(245, 158, 11, 0.25);
        border-radius: 8px;
        padding: 1rem 1.25rem;
        text-align: center;
        color: #f59e0b;
        font-weight: 500;
        font-size: 0.95rem;
    }

    /* Flash messages */
    .alert-success {
        background: rgba(34, 197, 94, 0.12);
        border: 1px solid rgba(34, 197, 94, 0.25);
        color: #22c55e;
        border-radius: 6px;
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .alert-error {
        background: rgba(239, 68, 68, 0.12);
        border: 1px solid rgba(239, 68, 68, 0.25);
        color: #ef4444;
        border-radius: 6px;
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .field-error {
        color: #ef4444;
        font-size: 0.82rem;
        margin-top: 0.15rem;
        margin-bottom: 0.5rem;
    }

    @media (max-width: 640px) {
        .comment-card.comment-staff {
            margin-left: 0;
        }

        .ticket-detail-header {
            flex-direction: column;
            align-items: flex-start;
        }
    }

/* ── From: directory/all-hotels.blade.php ── */
.all-hotels-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.all-hotels-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
}

.all-hotels-hero p {
    color: var(--text-muted, #5A6078);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.all-hotels-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted, #5A6078);
    margin-bottom: 1.5rem;
}

.all-hotels-breadcrumb a {
    color: var(--accent, #1e3a5f);
    text-decoration: none;
}

.all-hotels-breadcrumb a:hover {
    text-decoration: underline;
}

.all-hotels-breadcrumb .sep {
    color: rgba(232, 234, 242, 0.25);
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.hotel-card-link {
    text-decoration: none;
    display: block;
}

.hotel-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    padding: 1rem 1.15rem;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.hotel-card:hover {
    border-color: rgba(30, 58, 95, 0.25);
    background: rgba(30, 58, 95, 0.04);
    transform: translateY(-1px);
}

.hotel-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 0 0 0.3rem;
}

.hotel-city-state {
    font-size: 0.8125rem;
    color: var(--text-muted, #5A6078);
    margin: 0;
}

.hotel-city-state .state-badge {
    display: inline-block;
    background: rgba(30, 58, 95, 0.08);
    color: var(--accent, #1e3a5f);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    margin-left: 0.3rem;
    letter-spacing: 0.03em;
}

.section-heading-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.see-all-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent, #1e3a5f);
    text-decoration: none;
    transition: color 0.2s;
}

.see-all-link:hover {
    color: #2a5298;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .all-hotels-hero h1 {
        font-size: 1.5rem;
    }
    .hotel-grid {
        grid-template-columns: 1fr;
    }
}
.dir-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* ── From: directory/cities.blade.php ── */
.cities-page {
    max-width: 960px;
    margin: 0 auto;
}

.cities-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cities-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text, #1A1D2E);
    margin-bottom: 0.5rem;
}

.cities-hero p {
    color: var(--text-muted, #5A6078);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.cities-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.cities-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.cities-breadcrumb a:hover {
    text-decoration: underline;
}

.cities-breadcrumb .sep {
    color: rgba(232, 234, 242, 0.25);
}

.states-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.state-section {
    background: var(--bg-surface, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.state-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
}

.state-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.state-header-left {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.state-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text, #1A1D2E);
    margin: 0;
}

.state-header .state-count {
    font-size: 0.8rem;
    color: var(--text-muted, #8892A6);
}

.state-chevron {
    width: 20px;
    height: 20px;
    color: var(--text-muted, #8892A6);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.state-section.open .state-chevron {
    transform: rotate(180deg);
}

.state-cities {
    display: none;
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.state-section.open .state-cities {
    display: block;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.city-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    color: var(--text-muted, #3a4560);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.15s, color 0.15s;
}

.city-link:hover {
    background: rgba(30, 58, 95, 0.06);
    color: var(--accent, #1e3a5f);
    text-decoration: none;
}

.city-link .city-count {
    font-size: 0.75rem;
    color: #8892A6;
}

@media (max-width: 640px) {
    .cities-hero h1 {
        font-size: 1.5rem;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }
}
.dir-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* ── From: directory/city.blade.php ── */
.directory-hero {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .directory-hero h1 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 0.5rem;
    }

    .directory-hero p {
        color: var(--text-muted);
        font-size: 1.05rem;
    }

    .city-hero-banner {
        position: relative;
        width: 100%;
        min-height: 280px;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 2rem;
        display: flex;
        align-items: flex-end;
    }

    .city-hero-banner-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 40%;
    }

    .city-hero-banner-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(11, 13, 23, 0.92) 0%,
            rgba(11, 13, 23, 0.55) 40%,
            rgba(11, 13, 23, 0.15) 100%
        );
    }

    .city-hero-banner-content {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 2rem 2rem 1.5rem;
        color: #fff;
    }

    .city-hero-banner-content h1 {
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.25rem;
        text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }

    .city-hero-banner-content p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.05rem;
        text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    }

    .city-hero-attribution {
        position: absolute;
        bottom: 8px;
        left: 12px;
        font-size: 0.65rem;
        color: rgba(255, 255, 255, 0.45);
        z-index: 2;
    }

    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .breadcrumb a {
        color: var(--accent);
    }

    .breadcrumb span.sep {
        color: rgba(232, 234, 242, 0.25);
    }

    .hotel-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1rem;
    }

    .hotel-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .hotel-card {
        padding: 1.25rem;
        border-radius: 10px;
        background: var(--bg-surface, #ffffff);
        border: 1px solid var(--border);
        transition: border-color 0.2s;
    }

    .hotel-card:hover {
        border-color: rgba(30, 58, 95, 0.25);
    }

    .hotel-name {
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--text);
        margin-bottom: 0.5rem;
    }

    .hotel-address {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.5;
    }

    .hotel-city-state {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    .city-summary {
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    .seo-content {
        margin-top: 2.5rem;
        padding: 1.5rem 1.75rem;
        border-radius: 10px;
        background: var(--bg-surface, #ffffff);
        border: 1px solid var(--border);
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .seo-content h2 {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 0.75rem;
    }

    .seo-content strong {
        color: var(--text);
    }

    .featured-articles {
        margin-top: 2.5rem;
    }
    .featured-articles-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
    }
    .featured-article-card {
        display: flex;
        flex-direction: column;
        background: var(--bg-surface, #ffffff);
        border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
        border-radius: 10px;
        overflow: hidden;
        text-decoration: none;
        transition: border-color 0.2s, transform 0.15s;
    }
    .featured-article-card:hover {
        border-color: var(--accent, #1e3a5f);
        transform: translateY(-2px);
    }
    .featured-article-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: var(--bg, #F8F9FC);
    }
    .featured-article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }
    .featured-article-card:hover .featured-article-image img {
        transform: scale(1.05);
    }
    .featured-article-body {
        padding: 1rem 1.15rem 1.15rem;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .featured-article-body h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text, #1A1D2E);
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }
    .featured-article-body p {
        font-size: 0.85rem;
        color: var(--text-muted, #5A6078);
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    .featured-article-date {
        font-size: 0.75rem;
        color: var(--accent, #1e3a5f);
        font-weight: 500;
    }
    .dir-content {
        max-width: 1100px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
    }

/* ── From: directory/hotel.blade.php ── */
.breadcrumb {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }
    .breadcrumb a { color: var(--accent); }
    .breadcrumb span.sep { color: rgba(232, 234, 242, 0.25); }

    .hotel-hero {
        text-align: center;
        margin-bottom: 2rem;
    }
    .hotel-hero h1 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 0.25rem;
    }
    .hotel-hero .hotel-brand {
        font-size: 1rem;
        color: var(--text-muted);
        font-weight: 500;
    }

    /* Hotel intro — domain-specific SEO paragraph */
    .hotel-intro {
        margin-bottom: 1.5rem;
    }
    .hotel-intro h2 {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 0.4rem;
    }
    .hotel-intro p {
        font-size: 1.05rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin: 0;
    }

    /* MP-12: Collapsible Agoda description */
    .hotel-description-details {
        margin-bottom: 1.5rem;
        padding: 1rem;
        border-radius: 8px;
        background: var(--bg-surface, #ffffff);
        border: 1px solid var(--border);
    }
    .hotel-description-details > summary {
        font-size: 1rem;
        font-weight: 600;
        color: var(--accent);
        cursor: pointer;
        padding: 0.25rem 0;
        list-style: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .hotel-description-details > summary::-webkit-details-marker {
        display: none;
    }
    .hotel-description-details > summary::before {
        content: '▸';
        font-size: 0.9rem;
        transition: transform 0.2s;
        display: inline-block;
    }
    .hotel-description-details[open] > summary::before {
        transform: rotate(90deg);
    }
    .hotel-description-content {
        margin-top: 0.75rem;
        font-size: 0.95rem;
        color: var(--text-muted);
        line-height: 1.7;
    }

    /* CTA section — domain-specific call to action */
    .cta-section {
        text-align: center;
        margin: 1.5rem 0;
        padding: 1.5rem;
        border-radius: 10px;
        background: var(--bg-surface, #ffffff);
        border: 1px solid var(--border);
    }
    .cta-section .cta-btn {
        display: inline-block;
        padding: 0.75rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        background: var(--accent);
        border: none;
        border-radius: 8px;
        text-decoration: none;
        cursor: pointer;
        transition: opacity 0.15s;
    }
    .cta-section .cta-btn:hover {
        opacity: 0.85;
    }
    .cta-section .cta-support {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    /* FAQ section */
    .hotel-faq {
        margin: 1.5rem 0;
    }
    .hotel-faq h2 {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 1rem;
    }
    .faq-item {
        margin-bottom: 1rem;
        padding: 1rem;
        border-radius: 8px;
        background: var(--bg-surface, #ffffff);
        border: 1px solid var(--border);
    }
    .faq-item h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text);
        margin-bottom: 0.4rem;
    }
    .faq-item p {
        font-size: 0.95rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin: 0;
    }

    /* Two-column layout: info left, map right */
    .hotel-layout {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .hotel-info {
        flex: 1;
        min-width: 0;
    }
    .hotel-map-wrap {
        flex: 0 0 400px;
        max-width: 400px;
        position: sticky;
        top: 2rem;
    }
    .hotel-map-wrap .hotel-card {
        margin-bottom: 0;
        padding: 0;
        overflow: hidden;
    }
    .hotel-map-wrap .hotel-card.featured-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        overflow: visible;
    }
    #hotel-map {
        height: 350px;
        width: 100%;
        border-radius: 10px;
    }

    /* Responsive: stack on small screens */
    @media (max-width: 900px) {
        .hotel-layout {
            flex-direction: column;
        }
        .hotel-map-wrap {
            flex: none;
            max-width: 100%;
            width: 100%;
            position: static;
            order: -1; /* map above info on mobile */
        }
        #hotel-map {
            height: 280px;
        }
    }

    .hotel-card {
        padding: 1.5rem;
        border-radius: 10px;
        background: var(--bg-surface, #ffffff);
        border: 1px solid var(--border);
        margin-bottom: 1.5rem;
    }
    .hotel-card h2 {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--accent);
        margin-bottom: 0.75rem;
        border-bottom: 1px solid var(--border);
        padding-bottom: 0.5rem;
    }
    .hotel-card .detail {
        font-size: 0.95rem;
        color: var(--text-muted);
        margin-bottom: 0.4rem;
    }
    .hotel-card .detail strong {
        color: var(--text);
    }
    .hotel-card .detail a {
        color: var(--accent);
        text-decoration: none;
    }
    .hotel-card .detail a:hover {
        text-decoration: underline;
    }

    .amenity-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.5rem;
    }
    .amenity-tag {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.35rem 0.65rem;
        border-radius: 6px;
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.2);
        font-size: 0.85rem;
        color: var(--text);
    }
    .amenity-tag .tag-key {
        font-weight: 600;
        color: var(--accent);
    }

    .poi-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .poi-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.6rem 0;
        border-bottom: 1px solid var(--border);
        font-size: 0.95rem;
    }
    .poi-item:last-child {
        border-bottom: none;
    }
    .poi-name {
        color: var(--text);
        font-weight: 500;
        flex: 1;
        min-width: 0;
    }
    .poi-category {
        display: inline-block;
        padding: 0.2rem 0.55rem;
        border-radius: 6px;
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.2);
        font-size: 0.8rem;
        color: var(--text);
        white-space: nowrap;
    }
    .poi-distance {
        color: var(--accent);
        font-weight: 600;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    .poi-hidden {
        display: none;
    }
    .poi-toggle {
        display: inline-block;
        margin-top: 0.75rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--accent);
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
        text-decoration: none;
        transition: opacity 0.15s;
    }
    .poi-toggle:hover {
        opacity: 0.8;
        text-decoration: underline;
    }

    /* Nearby Hotels list */
    .nearby-hotels-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .nearby-hotels-list li {
        padding: 0.55rem 0;
        border-bottom: 1px solid var(--border);
    }
    .nearby-hotels-list li:last-child {
        border-bottom: none;
    }
    .nearby-hotels-list a {
        display: flex;
        align-items: baseline;
        gap: 0.5rem;
        text-decoration: none;
        color: var(--text);
        transition: color 0.15s;
    }
    .nearby-hotels-list a:hover {
        color: var(--accent);
    }
    .nearby-hotels-list .hotel-name {
        font-weight: 600;
    }
    .nearby-hotels-list .hotel-brand-tag {
        font-size: 0.8rem;
        color: var(--text-muted);
        font-weight: 400;
    }
    .nearby-hotels-list .hotel-location {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-left: auto;
        white-space: nowrap;
    }
    .see-all-hotels-link {
        display: block;
        text-align: center;
        padding: 10px 0 4px;
        color: var(--accent);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        margin-top: 8px;
        transition: color 0.2s;
    }
    .see-all-hotels-link:hover {
        color: var(--accent-hover, #fff);
        text-decoration: underline;
    }

    /* As Featured In — compact icon list (sidebar) */
    .featured-article-list-item {
        display: flex;
        align-items: flex-start;
        gap: 0.65rem;
        padding: 0.65rem 0;
        text-decoration: none;
        border-bottom: 1px solid var(--border);
        transition: background 0.15s;
    }
    .featured-article-list-item:first-child {
        padding-top: 0;
    }
    .featured-article-list-item:last-child {
        border-bottom: none;
    }
    .featured-article-list-item:hover {
        background: rgba(59, 130, 246, 0.04);
    }
    .featured-article-icon {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        color: var(--accent);
        margin-top: 2px;
    }
    .featured-article-list-text {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }
    .featured-article-list-title {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text);
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .featured-article-list-date {
        font-size: 0.7rem;
        color: var(--text-muted);
        margin-top: 0.15rem;
    }

    /* ── Sidebar RFP Form (hotel page) ────────────── */
    .sidebar-form {
        background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(139,92,246,0.08));
        border: 1px solid rgba(59,130,246,0.2);
        border-radius: 12px;
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    .sidebar-form-heading {
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--text);
        margin-bottom: 0.35rem;
    }
    .sidebar-form-sub {
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    .sidebar-form .form-group {
        margin-bottom: 1rem;
    }
    .sidebar-form .form-label {
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        color: rgba(232,234,242,0.7);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-bottom: 0.4rem;
    }
    .sidebar-form .form-input {
        width: 100%;
        padding: 0.55rem 0.75rem;
        background: var(--bg);
        color: var(--text);
        border: 1px solid var(--border);
        border-radius: 8px;
        font-size: 0.88rem;
        outline: none;
        transition: border-color 0.2s;
    }
    .sidebar-form .form-input:focus {
        border-color: var(--accent);
    }
    .sidebar-form .form-input::placeholder {
        color: rgba(232,234,242,0.3);
    }
    .sidebar-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .sidebar-form .sidebar-submit {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
        font-weight: 700;
        white-space: nowrap;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        background: linear-gradient(135deg, var(--accent), var(--accent-2));
        color: #fff;
        transition: opacity 0.2s, transform 0.15s;
        margin-top: 0.25rem;
    }
    .sidebar-form .sidebar-submit:hover {
        opacity: 0.92;
        transform: translateY(-1px);
    }
    .sidebar-form .sidebar-submit:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }
    .sidebar-form .autocomplete-wrapper {
        position: relative;
    }
    .sidebar-form .autocomplete-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 100;
        background: #ffffff;
        border: 1px solid var(--border);
        border-top: none;
        border-radius: 0 0 8px 8px;
        max-height: 200px;
        overflow-y: auto;
        display: none;
        box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }
    .sidebar-form .autocomplete-dropdown.visible {
        display: block;
    }
    .sidebar-form .autocomplete-item {
        padding: 0.5rem 0.75rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.15s;
        font-size: 0.85rem;
        border-bottom: 1px solid var(--border);
    }
    .sidebar-form .autocomplete-item:last-child {
        border-bottom: none;
    }
    .sidebar-form .autocomplete-item:hover,
    .sidebar-form .autocomplete-item.active {
        background: rgba(59,130,246,0.12);
    }
    .sidebar-form .sot-notice {
        background: rgba(239,68,68,0.1);
        border: 1px solid rgba(239,68,68,0.25);
        border-radius: 6px;
        padding: 0.5rem 0.75rem;
        margin-top: 0.4rem;
        font-size: 0.78rem;
        color: #fca5a5;
        line-height: 1.3;
    }

    @media (max-width: 900px) {
        .sidebar-form .form-row {
            grid-template-columns: 1fr;
        }
    }
    .dir-content {
        max-width: 1100px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
    }

/* ── From: directory/index.blade.php ── */
.directory-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}
.directory-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.directory-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.all-hotels-cta {
    display: inline-block;
    margin-top: 1rem;
    background: var(--accent, #1e3a5f);
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background 0.2s;
}

.all-hotels-cta:hover {
    background: #2a5298;
    text-decoration: none;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span.sep { color: rgba(232,234,242,0.25); }
.state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.state-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.state-card:hover {
    border-color: rgba(59,130,246,0.3);
    background: rgba(59,130,246,0.06);
    text-decoration: none;
}
.state-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}
.state-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(59,130,246,0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    white-space: nowrap;
}
.pending-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.25);
    color: var(--accent-2, #1a2d4a);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    transition: background 0.2s;
}
.pending-link:hover {
    background: rgba(139,92,246,0.18);
    text-decoration: none;
}
.pending-count {
    background: rgba(139,92,246,0.2);
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
}
.disclaimer {
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    background: rgba(234,179,8,0.06);
    border: 1px solid rgba(234,179,8,0.15);
    color: rgba(232,234,242,0.65);
    font-size: 0.9rem;
    line-height: 1.6;
}
.disclaimer strong {
    color: rgba(234,179,8,0.85);
}
.seo-content {
    margin-top: 2.5rem;
    padding: 1.5rem 1.75rem;
    border-radius: 10px;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}
.seo-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}
.seo-content strong {
    color: var(--text);
}
.dir-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* ── From: directory/pending.blade.php ── */
.directory-hero {
    text-align: center;
    padding: 2rem 0 1.5rem;
}
.directory-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.directory-hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--accent); }
.hotel-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.hotel-card {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    gap: 1rem;
}
.hotel-info {
    flex: 1;
    min-width: 0;
}
.hotel-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.hotel-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.hotel-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    background: rgba(139,92,246,0.12);
    color: var(--accent-2);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
}
.dir-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* ── From: directory/state.blade.php ── */
.directory-hero {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .directory-hero h1 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 0.5rem;
    }

    .directory-hero p {
        color: var(--text-muted);
        font-size: 1.05rem;
    }

    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .breadcrumb a {
        color: var(--accent);
    }

    .breadcrumb span.sep {
        color: rgba(232, 234, 242, 0.25);
    }

    .city-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 0.75rem;
    }

    .city-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem;
        border-radius: 10px;
        background: var(--bg-surface, #ffffff);
        border: 1px solid var(--border);
        text-decoration: none;
        transition: border-color 0.2s, background 0.2s;
    }

    .city-card:hover {
        border-color: rgba(30, 58, 95, 0.25);
        background: rgba(30, 58, 95, 0.04);
        text-decoration: none;
    }

    .city-name {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text);
    }

    .city-count {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--accent);
        background: rgba(30, 58, 95, 0.08);
        padding: 0.2rem 0.6rem;
        border-radius: 9999px;
        white-space: nowrap;
    }

    .state-summary {
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    .seo-content {
        margin-top: 2.5rem;
        padding: 1.5rem 1.75rem;
        border-radius: 10px;
        background: var(--bg-surface, #ffffff);
        border: 1px solid var(--border);
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .seo-content h2 {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 0.75rem;
    }

    .seo-content strong {
        color: var(--text);
    }
    .dir-content {
        max-width: 1100px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
    }