/*
 * ═══════════════════════════════════════════════════════════════════════════════
 * Lavisa Destinations Theme — ENHANCED SINGLE PAGE UTILITY WIDGETS (E17)
 * ═══════════════════════════════════════════════════════════════════════════════
 *
 * @file        assets/css/ldt-enhanced-sections-single-widgets.css
 * @package     Lavisa_Destinations_Theme
 * @since       2.9.18  (E17 — Visual Enhancement Roadmap v2 — Stage 6)
 * @depends     ldt-tokens-enhanced.css                  (E1)
 *              ldt-enhanced-base.css                    (E2)
 *              ldt-enhanced-animations.css              (E3 — keyframes:
 *                                                            ldt-pulse-glow,
 *                                                            ldt-fade-up)
 *              ldt-enhanced-sections-single.css         (E15)
 *              ldt-enhanced-sections-single-cards.css   (E16)
 *
 *   Polishes the practical / informational utility widgets on single
 *   destination pages — the "tools" travelers use when planning a trip:
 *
 *     section-weather.php           Big weather grid (live + climate)
 *     section-weather-widget.php    Compact sidebar weather widget
 *     section-money-panel.php       Currency / exchange / tipping panel
 *     section-transport.php         Getting around (airports + modes)
 *     section-visa.php              Visa requirement card
 *     section-reviews.php           Reviews summary + cards
 *     section-review-card.php       Single review card (compact reusable)
 *     section-budget.php            Budget estimate card with breakdown
 *     section-budget-calculator.php Interactive budget calculator
 *     section-emergency-contacts.php Police/ambulance/embassy phone numbers
 *
 *   PURE CSS LAYER — no PHP partial is touched. Same approach as E4-E16.
 *
 * ═══════════════════════════════════════════════════════════════════════════════
 */


/* ═══════════════════════════════════════════════════════════════════════════════
 * 1. WEATHER (.ldt-weather-section + .ldt-weather-card)
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

/* Weather card — glass-light surface */
body .ldt-weather-card {
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 4px 16px rgba(0, 53, 128, 0.06);
    padding: 22px;
}

body .ldt-weather-card__title {
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 53, 128, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Live weather row — big temp + info */
body .ldt-weather-live {
    display: flex;
    align-items: center;
    gap: 16px;
}

body .ldt-weather-live__temp {
    background: var(--ldt-gradient-text,
                linear-gradient(135deg, #003580 0%, #0057b8 50%, #ff8c00 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--ldt-primary, #003580);  /* fallback */
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

body .ldt-weather-live__info {
    flex: 1;
    color: var(--ldt-gray-700, #334155);
    font-size: 14px;
    line-height: 1.4;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 2. WEATHER WIDGET (.ldt-weather-widget) — compact sidebar
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-weather-widget {
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 6px 20px rgba(0, 53, 128, 0.06);
    padding: 20px;
}

body .ldt-weather-widget__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 53, 128, 0.06);
}

body .ldt-weather-widget__title {
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body .ldt-weather-widget__title::before {
    content: "";
    width: 4px;
    height: 14px;
    background: var(--ldt-gradient-accent,
                linear-gradient(180deg, #ff8c00 0%, #e07a00 100%));
    border-radius: 2px;
}

body .ldt-weather-widget__cta {
    color: var(--ldt-accent, #ff8c00);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 200ms var(--ldt-ease-portal, ease);
}

body .ldt-weather-widget__cta:hover {
    opacity: 0.80;
    text-decoration: underline;
}

/* Live block — icon + temp + body */
body .ldt-weather-widget__live {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

body .ldt-weather-widget__live-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 10px rgba(0, 53, 128, 0.20));
}

body .ldt-weather-widget__live-body {
    flex: 1;
    min-width: 0;
}

body .ldt-weather-widget__live-eyebrow {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
}

body .ldt-weather-widget__live-temp {
    background: var(--ldt-gradient-text,
                linear-gradient(135deg, #003580 0%, #0057b8 50%, #ff8c00 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--ldt-primary, #003580);  /* fallback */
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

body .ldt-weather-widget__live-temp > span {
    font-size: 1.125rem;
    -webkit-text-fill-color: var(--ldt-gray-500, #94a3b8);
    background: none;
    color: var(--ldt-gray-500, #94a3b8);
}

body .ldt-weather-widget__live-desc {
    color: var(--ldt-gray-700, #334155);
    font-size: 13px;
    font-weight: 600;
    display: block;
}

body .ldt-weather-widget__live-feels {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 12px;
    font-weight: 500;
    display: block;
}

/* Forecast row */
body .ldt-weather-widget__forecast {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 53, 128, 0.06);
    border-bottom: 1px solid rgba(0, 53, 128, 0.06);
    margin-bottom: 12px;
}

body .ldt-weather-widget__forecast-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 4px;
    border-radius: var(--ldt-radius-input, 0.75rem);
    transition: background 200ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-weather-widget__forecast-day:hover {
        background: rgba(255, 140, 0, 0.06);
    }
}

body .ldt-weather-widget__forecast-label {
    color: var(--ldt-gray-600, #64748b);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

body .ldt-weather-widget__forecast-icon {
    width: 32px;
    height: 32px;
}

body .ldt-weather-widget__forecast-range {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ldt-dark, #1e293b);
}

/* Best months strip — mini variant of E15's best-time-strip */
body .ldt-weather-widget__months-label {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 8px;
}

body .ldt-weather-widget__months-list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3px;
    list-style: none;
    padding: 0;
    margin: 0;
}

body .ldt-weather-widget__month {
    text-align: center;
    padding: 4px 2px;
    border-radius: 4px;
    background: rgba(0, 53, 128, 0.04);
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

body .ldt-weather-widget__month.is-best {
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    color: #ffffff;
    box-shadow: 0 1px 4px rgba(255, 140, 0, 0.40);
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 3. MONEY PANEL (.ldt-money-panel)
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-money-panel {
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 6px 20px rgba(0, 53, 128, 0.06);
    padding: 22px;
}

body .ldt-money-panel__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 53, 128, 0.08);
}

body .ldt-money-panel__header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--ldt-radius-input, 0.75rem);
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    color: #ffffff;
    box-shadow: var(--ldt-shadow-accent-soft, 0 4px 12px rgba(255, 140, 0, 0.25));
    flex-shrink: 0;
}

body .ldt-money-panel__title {
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Currency display */
body .ldt-money-panel__currency-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

body .ldt-money-panel__currency-label {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body .ldt-money-panel__currency-value {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

body .ldt-money-panel__symbol {
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--ldt-accent, #ff8c00);  /* fallback */
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

body .ldt-money-panel__code {
    color: var(--ldt-gray-600, #64748b);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* Exchange rate */
body .ldt-money-panel__rate {
    background: rgba(0, 53, 128, 0.04);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-input, 0.75rem);
    padding: 10px 14px;
    margin-bottom: 14px;
}

body .ldt-money-panel__rate-label {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 2px;
}

body .ldt-money-panel__rate-value {
    color: var(--ldt-primary, #003580);
    font-weight: 800;
    font-size: 15px;
    font-family: var(--ldt-font-mono, 'JetBrains Mono', monospace);
}

body .ldt-money-panel__rate-note {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 11px;
    font-style: italic;
    display: block;
    margin-top: 2px;
}

/* Details rows */
body .ldt-money-panel__details {
    margin: 0;
    padding: 0;
}

body .ldt-money-panel__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 53, 128, 0.08);
}

body .ldt-money-panel__row:last-child {
    border-bottom: none;
}

body .ldt-money-panel__row dt {
    color: var(--ldt-gray-600, #64748b);
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

body .ldt-money-panel__row dd {
    color: var(--ldt-dark, #1e293b);
    font-weight: 700;
    font-size: 14px;
    text-align: right;
    margin: 0;
}

[dir="rtl"] body .ldt-money-panel__row dd,
.ldt-rtl body .ldt-money-panel__row dd {
    text-align: left;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 4. TRANSPORT (.ldt-transport, .ldt-airport-card, .ldt-mode-card)
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-transport-block {
    margin: 24px 0;
}

body .ldt-transport-block__title {
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

body .ldt-transport-block__title::before {
    content: "";
    width: 4px;
    height: 18px;
    background: var(--ldt-gradient-accent,
                linear-gradient(180deg, #ff8c00 0%, #e07a00 100%));
    border-radius: 2px;
}

body .ldt-transport-airports,
body .ldt-transport-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

/* Airport card */
body .ldt-airport-card,
body .ldt-mode-card {
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-input, 0.75rem);
    box-shadow: 0 4px 12px rgba(0, 53, 128, 0.04);
    padding: 16px;
    transition:
        transform 250ms var(--ldt-ease-portal, ease),
        border-color 250ms var(--ldt-ease-portal, ease),
        box-shadow 250ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-airport-card:hover,
    body .ldt-mode-card:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 140, 0, 0.30);
        box-shadow: 0 12px 26px rgba(255, 140, 0, 0.12);
    }
}

body .ldt-airport-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

body .ldt-airport-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--ldt-radius-input, 0.75rem);
    background: rgba(255, 140, 0, 0.10);
    color: var(--ldt-accent, #ff8c00);
    flex-shrink: 0;
    font-size: 18px;
}

body .ldt-airport-card__name {
    color: var(--ldt-dark, #1e293b);
    font-weight: 700;
    font-size: 14px;
    display: block;
}

body .ldt-airport-card__iata {
    display: inline-block;
    padding: 2px 8px;
    background: var(--ldt-gradient-brand,
                linear-gradient(135deg, #003580 0%, #0057b8 100%));
    color: #ffffff;
    border-radius: var(--ldt-radius-pill, 9999px);
    font-family: var(--ldt-font-mono, 'JetBrains Mono', monospace);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

body .ldt-airport-card__distance {
    color: var(--ldt-gray-600, #64748b);
    font-size: 13px;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 5. VISA (.ldt-visa-section, .ldt-visa-card, .ldt-visa-detail)
 *
 * Note: .ldt-visa-card uses inline `border-left: 4px solid <color>` from
 * PHP — we preserve that and layer polish around it.
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-visa-card {
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 6px 20px rgba(0, 53, 128, 0.06);
    padding: 22px;
    /* border-left preserved via PHP inline style */
}

[dir="rtl"] body .ldt-visa-card,
.ldt-rtl body .ldt-visa-card {
    /* In RTL, the visual emphasis should be on the right edge */
    direction: rtl;
}

body .ldt-visa-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 53, 128, 0.06);
}

body .ldt-visa-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.10);
    border: 1px solid rgba(255, 140, 0, 0.20);
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

body .ldt-visa-card__title-wrap {
    flex: 1;
    min-width: 0;
}

body .ldt-visa-card__title {
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
}

/* Status badge — color comes from PHP inline style */
body .ldt-visa-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: var(--ldt-radius-pill, 9999px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Details grid */
body .ldt-visa-card__details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

body .ldt-visa-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    background: rgba(0, 53, 128, 0.04);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-input, 0.75rem);
}

body .ldt-visa-detail__label {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body .ldt-visa-detail__value {
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: 14px;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 6. REVIEWS (.ldt-rev-summary, .ldt-rev-card, .ldt-rc)
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-rev-summary {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    padding: 20px;
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 4px 14px rgba(0, 53, 128, 0.06);
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    body .ldt-rev-summary {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

body .ldt-rev-summary__score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 0;
    border-right: 1px solid rgba(0, 53, 128, 0.08);
}

@media (max-width: 600px) {
    body .ldt-rev-summary__score {
        border-right: none;
        border-bottom: 1px solid rgba(0, 53, 128, 0.08);
        padding-bottom: 16px;
    }
}

[dir="rtl"] body .ldt-rev-summary__score,
.ldt-rtl body .ldt-rev-summary__score {
    border-right: none;
    border-left: 1px solid rgba(0, 53, 128, 0.08);
}

body .ldt-rev-summary__avg {
    background: var(--ldt-gradient-text,
                linear-gradient(135deg, #003580 0%, #0057b8 50%, #ff8c00 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--ldt-primary, #003580);  /* fallback */
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

body .ldt-rev-summary__stars {
    color: var(--ldt-accent, #ff8c00);
    font-size: 18px;
    letter-spacing: 0.05em;
    margin: 4px 0;
    filter: drop-shadow(0 1px 2px rgba(255, 140, 0, 0.30));
}

body .ldt-rev-summary__count {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 13px;
    font-weight: 600;
}

/* Bars */
body .ldt-rev-summary__bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body .ldt-rev-bar {
    display: grid;
    grid-template-columns: 32px 1fr 40px;
    align-items: center;
    gap: 10px;
}

body .ldt-rev-bar__label {
    color: var(--ldt-gray-600, #64748b);
    font-size: 12px;
    font-weight: 700;
}

body .ldt-rev-bar__track {
    height: 6px;
    background: rgba(0, 53, 128, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

body .ldt-rev-bar__fill {
    height: 100%;
    background: var(--ldt-gradient-accent,
                linear-gradient(90deg, #ff8c00 0%, #e07a00 100%));
    border-radius: 3px;
    transition: width 600ms var(--ldt-ease-portal, ease);
}

body .ldt-rev-bar__count {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 12px;
    font-weight: 600;
    text-align: right;
}

[dir="rtl"] body .ldt-rev-bar__count,
.ldt-rtl body .ldt-rev-bar__count {
    text-align: left;
}

/* Review list */
body .ldt-rev-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

/* Review card (old + new — both share polish) */
body .ldt-rev-card,
body .ldt-rc {
    background: #ffffff;
    border: 1px solid rgba(0, 53, 128, 0.06);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 4px 14px rgba(0, 53, 128, 0.06);
    padding: 18px;
    transition:
        transform 300ms var(--ldt-ease-portal, ease),
        box-shadow 300ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-rev-card:hover,
    body .ldt-rc:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(0, 53, 128, 0.12);
    }
}

/* Review card NEW (.ldt-rc) header + author */
body .ldt-rc__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

body .ldt-rc__author {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

body .ldt-rc__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.30);
    flex-shrink: 0;
}

body .ldt-rc__avatar--initials {
    background: var(--ldt-gradient-brand,
                linear-gradient(135deg, #003580 0%, #0057b8 100%));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.02em;
}

body .ldt-rc__name {
    color: var(--ldt-dark, #1e293b);
    font-weight: 700;
    font-size: 14px;
    display: block;
    line-height: 1.3;
}

body .ldt-rc__context {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
}

body .ldt-rc__country {
    color: var(--ldt-accent, #ff8c00);
    font-weight: 700;
}

body .ldt-rc__dot {
    color: var(--ldt-gray-400, #94a3b8);
    user-select: none;
}

body .ldt-rc__time {
    color: var(--ldt-gray-500, #94a3b8);
}

/* Stars */
body .ldt-rc__stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    flex-shrink: 0;
}

body .ldt-rc__star {
    color: var(--ldt-gray-300, #cbd5e1);
    font-size: 14px;
    line-height: 1;
}

body .ldt-rc__star.is-on {
    color: var(--ldt-accent, #ff8c00);
    filter: drop-shadow(0 1px 1px rgba(255, 140, 0, 0.30));
}

body .ldt-rc__title {
    color: var(--ldt-dark, #1e293b);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 7. BUDGET (.ldt-budget-section, .ldt-budget-card)
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-budget-card {
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 6px 22px rgba(0, 53, 128, 0.06);
    padding: 22px;
}

body .ldt-budget-total {
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 53, 128, 0.08);
}

body .ldt-budget-total__label {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 6px;
}

body .ldt-budget-total__amount {
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--ldt-accent, #ff8c00);  /* fallback */
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}

body .ldt-budget-total__sub {
    color: var(--ldt-gray-600, #64748b);
    font-size: 13px;
    font-weight: 500;
    display: block;
}

/* Budget breakdown rows */
body .ldt-budget-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 53, 128, 0.08);
}

body .ldt-budget-row:last-child {
    border-bottom: none;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 8. BUDGET CALCULATOR (.ldt-budget-calc) — interactive
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-budget-calc {
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 6px 22px rgba(0, 53, 128, 0.06);
    padding: 22px;
}

body .ldt-budget-calc__title {
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
}

body .ldt-budget-calc__subtitle {
    color: var(--ldt-gray-600, #64748b);
    margin: 0 0 18px;
}

/* Travel style buttons */
body .ldt-budget-calc__styles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
    margin-bottom: 18px;
}

body .ldt-budget-calc__style {
    background: rgba(0, 53, 128, 0.04);
    border: 1px solid rgba(0, 53, 128, 0.10);
    border-radius: var(--ldt-radius-input, 0.75rem);
    padding: 10px 12px;
    color: var(--ldt-gray-600, #64748b);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition:
        background 200ms var(--ldt-ease-portal, ease),
        border-color 200ms var(--ldt-ease-portal, ease),
        color 200ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-budget-calc__style:not(.is-active):hover {
        background: rgba(255, 140, 0, 0.06);
        border-color: rgba(255, 140, 0, 0.30);
        color: var(--ldt-accent-dark, #e07a00);
    }
}

body .ldt-budget-calc__style.is-active {
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    border-color: transparent;
    color: #ffffff;
    box-shadow: var(--ldt-shadow-accent-soft, 0 4px 12px rgba(255, 140, 0, 0.30));
}

/* Inputs */
body .ldt-budget-calc__inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

@media (max-width: 600px) {
    body .ldt-budget-calc__inputs {
        grid-template-columns: 1fr;
    }
}

body .ldt-budget-calc__input {
    padding: 14px;
    background: rgba(0, 53, 128, 0.04);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-input, 0.75rem);
}

body .ldt-budget-calc__input-label {
    color: var(--ldt-gray-600, #64748b);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-block;
}

body .ldt-budget-calc__input-value {
    color: var(--ldt-accent-dark, #e07a00);
    font-weight: 800;
    font-size: 15px;
    margin-left: 6px;
}

[dir="rtl"] body .ldt-budget-calc__input-value,
.ldt-rtl body .ldt-budget-calc__input-value {
    margin-left: 0;
    margin-right: 6px;
}

/* Slider — accent-colored */
body .ldt-budget-calc__slider {
    width: 100%;
    accent-color: var(--ldt-accent, #ff8c00);
    margin-top: 10px;
}

/* Stepper */
body .ldt-budget-calc__stepper {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    background: #ffffff;
    border: 1px solid rgba(0, 53, 128, 0.10);
    border-radius: var(--ldt-radius-pill, 9999px);
    overflow: hidden;
}

body .ldt-budget-calc__stepper-btn {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    color: var(--ldt-primary, #003580);
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: background 200ms var(--ldt-ease-portal, ease);
}

body .ldt-budget-calc__stepper-btn:hover {
    background: rgba(255, 140, 0, 0.10);
    color: var(--ldt-accent, #ff8c00);
}

body .ldt-budget-calc__stepper-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: 14px;
    outline: none;
}

/* Result */
body .ldt-budget-calc__result {
    text-align: center;
    padding: 16px;
    background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.08) 0%,
        rgba(255, 140, 0, 0.02) 100%
    );
    border: 1px solid rgba(255, 140, 0, 0.20);
    border-radius: var(--ldt-radius-card, 1.25rem);
}

body .ldt-budget-calc__total {
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--ldt-accent, #ff8c00);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 9. EMERGENCY CONTACTS (.ldt-emergency-contacts)
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-emergency-contacts {
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(220, 38, 38, 0.18);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    padding: 22px;
}

body .ldt-emergency-contacts__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(220, 38, 38, 0.16);
}

/* Red exclamation badge */
body .ldt-emergency-contacts__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.30);
    animation: ldt-pulse-glow 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    body .ldt-emergency-contacts__badge { animation: none; }
}

body .ldt-emergency-contacts__title {
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Grid of contact items */
body .ldt-emergency-contacts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

/* Contact item — phone number block */
body .ldt-emergency-contacts__item {
    background: #ffffff;
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-input, 0.75rem);
    padding: 12px 14px;
    transition:
        transform 200ms var(--ldt-ease-portal, ease),
        border-color 200ms var(--ldt-ease-portal, ease),
        box-shadow 200ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-emergency-contacts__item:hover {
        transform: translateY(-2px);
        border-color: rgba(220, 38, 38, 0.30);
        box-shadow: 0 8px 20px rgba(220, 38, 38, 0.10);
    }
}

/* Critical (police, ambulance, fire) — extra red emphasis */
body .ldt-emergency-contacts__item.is-critical {
    background: linear-gradient(
        135deg,
        rgba(220, 38, 38, 0.04) 0%,
        rgba(220, 38, 38, 0.01) 100%
    );
    border-color: rgba(220, 38, 38, 0.30);
}

body .ldt-emergency-contacts__item-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

body .ldt-emergency-contacts__item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--ldt-radius-input, 0.75rem);
    background: rgba(220, 38, 38, 0.10);
    color: rgb(185, 28, 28);
    flex-shrink: 0;
}

body .ldt-emergency-contacts__item-label {
    color: var(--ldt-dark, #1e293b);
    font-weight: 700;
    font-size: 13px;
}

/* Phone number — large + clickable */
body .ldt-emergency-contacts__item-number {
    display: block;
    font-family: var(--ldt-font-mono, 'JetBrains Mono', monospace);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgb(185, 28, 28);
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 200ms var(--ldt-ease-portal, ease);
}

body .ldt-emergency-contacts__item-number:hover {
    color: rgb(220, 38, 38);
}

/* Copy button */
body .ldt-emergency-contacts__copy {
    display: inline-flex;
    align-items: center;
    margin-top: 6px;
    padding: 4px 10px;
    background: rgba(0, 53, 128, 0.06);
    border: 1px solid rgba(0, 53, 128, 0.10);
    border-radius: var(--ldt-radius-pill, 9999px);
    color: var(--ldt-gray-600, #64748b);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 200ms var(--ldt-ease-portal, ease),
        color 200ms var(--ldt-ease-portal, ease);
}

body .ldt-emergency-contacts__copy:hover {
    background: rgba(255, 140, 0, 0.10);
    color: var(--ldt-accent-dark, #e07a00);
    border-color: rgba(255, 140, 0, 0.30);
}

/* Embassy block */
body .ldt-emergency-contacts__embassy {
    background: rgba(0, 53, 128, 0.04);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-input, 0.75rem);
    padding: 14px 16px;
}

body .ldt-emergency-contacts__embassy-title {
    color: var(--ldt-primary, #003580);
    font-weight: 800;
    font-size: 14px;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

body .ldt-emergency-contacts__embassy-list {
    margin: 0;
    padding: 0;
}

body .ldt-emergency-contacts__embassy-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(0, 53, 128, 0.08);
    font-size: 13px;
}

body .ldt-emergency-contacts__embassy-row:last-child {
    border-bottom: none;
}

body .ldt-emergency-contacts__embassy-row dt {
    color: var(--ldt-gray-600, #64748b);
    font-weight: 600;
    margin: 0;
}

body .ldt-emergency-contacts__embassy-row dd {
    color: var(--ldt-dark, #1e293b);
    font-weight: 700;
    text-align: right;
    margin: 0;
}

[dir="rtl"] body .ldt-emergency-contacts__embassy-row dd,
.ldt-rtl body .ldt-emergency-contacts__embassy-row dd {
    text-align: left;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 10. RESPONSIVE
 * ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* Weather widget: smaller forecast cells */
    body .ldt-weather-widget {
        padding: 16px;
    }

    body .ldt-weather-widget__live-temp {
        font-size: 1.625rem;
    }

    body .ldt-weather-widget__live-icon {
        width: 48px;
        height: 48px;
    }

    /* Money panel: tighter padding */
    body .ldt-money-panel {
        padding: 18px;
    }

    body .ldt-money-panel__symbol {
        font-size: 1.5rem;
    }

    /* Visa card: tighter */
    body .ldt-visa-card {
        padding: 18px;
    }

    body .ldt-visa-card__icon {
        width: 38px;
        height: 38px;
    }

    /* Reviews summary: smaller score */
    body .ldt-rev-summary__avg {
        font-size: 2.25rem;
    }

    /* Budget total: scales down */
    body .ldt-budget-total__amount {
        font-size: 2rem;
    }

    body .ldt-budget-calc__total {
        font-size: 1.625rem;
    }

    /* Emergency contacts: smaller phone numbers */
    body .ldt-emergency-contacts__item-number {
        font-size: 1.25rem;
    }
}


/* ─── END OF ldt-enhanced-sections-single-widgets.css ─────────────────────── */
