:root{
    --bg:#020617;
    --bg-2:#0f172a;
    --panel:rgba(15,23,42,.84);
    --panel-2:rgba(15,23,42,.68);
    --panel-3:rgba(255,255,255,.04);
    --line:rgba(148,163,184,.16);
    --line-strong:rgba(255,255,255,.10);
    --text:#e5eefc;
    --muted:#94a3b8;
    --muted-2:#64748b;
    --primary:#f97316;
    --primary-2:#fb7185;
    --accent:#14b8a6;
    --blue:#2563eb;
    --success:#22c55e;
    --danger:#ef4444;
    --warning:#f59e0b;
    --shadow:0 24px 60px rgba(0,0,0,.34);
    --shadow-soft:0 14px 34px rgba(0,0,0,.24);
    --radius:28px;
    --composer-left:300px;
    --map-height:600px;
}

body.light-mode{
    --bg:#f8fafc;
    --bg-2:#e2e8f0;
    --panel:rgba(255,255,255,.92);
    --panel-2:rgba(255,255,255,.82);
    --panel-3:rgba(15,23,42,.03);
    --line:rgba(15,23,42,.10);
    --line-strong:rgba(15,23,42,.12);
    --text:#0f172a;
    --muted:#475569;
    --muted-2:#64748b;
    --shadow:0 24px 60px rgba(15,23,42,.12);
    --shadow-soft:0 14px 34px rgba(15,23,42,.10);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
    margin:0;
    overflow:hidden;
    font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at top right, rgba(249,115,22,.11), transparent 22%),
        radial-gradient(circle at bottom left, rgba(20,184,166,.08), transparent 26%),
        linear-gradient(180deg, var(--bg) 0%, #0b1220 46%, var(--bg-2) 100%);
}

body.light-mode{
    background:
        radial-gradient(circle at top right, rgba(249,115,22,.10), transparent 24%),
        radial-gradient(circle at bottom left, rgba(20,184,166,.08), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #eef2ff 44%, #e2e8f0 100%);
}

*::-webkit-scrollbar{
    width:10px;
    height:10px;
}

*::-webkit-scrollbar-thumb{
    background:rgba(148,163,184,.28);
    border-radius:999px;
}

*::-webkit-scrollbar-track{
    background:transparent;
}

.app-shell{
    display:flex;
    width:100%;
    min-height:100vh;
}

.mobile-backdrop{
    position:fixed;
    inset:0;
    background:rgba(2,6,23,.56);
    backdrop-filter:blur(4px);
    z-index:45;
    display:none;
}

.mobile-backdrop.visible{display:block}

.main{
    flex:1;
    min-width:0;
    display:flex;
    flex-direction:column;
    height:100vh;
    overflow:hidden;
    position:relative;
}

.topbar{
    height:72px;
    flex:0 0 72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:0 24px;
    border-bottom:1px solid var(--line);
    background:rgba(2,6,23,.46);
    backdrop-filter:blur(16px);
    z-index:10;
}

body.light-mode .topbar{
    background:rgba(255,255,255,.72);
}

.topbar-left{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
}

.topbar-title{
    font-size:18px;
    font-weight:900;
    letter-spacing:-.03em;
    color:var(--text);
    margin:0;
}

.topbar-sub{
    font-size:12px;
    color:var(--muted);
    margin-top:2px;
}

.mobile-menu-btn,
.icon-btn,
.round-btn,
.send-btn,
.ghost-btn,
.primary-btn,
.tab-btn,
.quick-prompt,
.chip-btn,
.pagination-btn,
.followup-btn,
.flight-action-btn,
.hotel-google-btn,
.lead-btn{
    border:none;
    cursor:pointer;
    transition:.2s ease;
    font:inherit;
}

.mobile-menu-btn,
.icon-btn,
.round-btn{
    width:44px;
    height:44px;
    border-radius:16px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.04);
    color:var(--text);
    display:grid;
    place-items:center;
}

.mobile-menu-btn{display:none}

.icon-btn:hover,
.round-btn:hover,
.mobile-menu-btn:hover,
.ghost-btn:hover,
.chip-btn:hover,
.pagination-btn:hover,
.followup-btn:hover,
.quick-prompt:hover,
.flight-action-btn:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.08);
    border-color:rgba(255,255,255,.18);
}

.content-scroll{
    flex:1;
    overflow:auto;
    padding:28px 20px 260px;
    scroll-behavior:smooth;
}

.content-inner{
    width:min(1320px,100%);
    margin:0 auto;
}

.hero-empty{
    min-height:calc(100vh - 300px);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:999px;
    border:1px solid rgba(249,115,22,.18);
    background:rgba(249,115,22,.08);
    color:#fdba74;
    font-size:12px;
    font-weight:800;
    letter-spacing:.04em;
    margin-bottom:20px;
}

.hero-title{
    margin:0;
    font-size:clamp(34px,5vw,68px);
    line-height:.98;
    letter-spacing:-.06em;
    font-weight:900;
    color:var(--text);
}

.hero-gradient{
    background:linear-gradient(90deg,var(--primary),var(--primary-2),#8b5cf6);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero-copy{
    max-width:860px;
    margin:20px auto 0;
    font-size:clamp(16px,2vw,22px);
    line-height:1.7;
    color:var(--muted);
    font-weight:500;
}

.guest-limit-box{
    margin-top:22px;
    width:min(820px,100%);
    text-align:left;
    border:1px solid var(--line);
    border-radius:26px;
    background:var(--panel);
    box-shadow:var(--shadow-soft);
    padding:18px;
}

.guest-limit-title{
    font-size:14px;
    font-weight:900;
    color:var(--text);
    margin-bottom:8px;
}

.guest-limit-copy{
    color:var(--muted);
    font-size:14px;
    line-height:1.7;
}

.quick-prompts{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin-top:32px;
}

.quick-prompt{
    border:1px solid var(--line);
    background:rgba(255,255,255,.04);
    color:var(--text);
    border-radius:999px;
    padding:12px 16px;
    font-size:14px;
    font-weight:800;
}

.quick-prompt:hover{
    transform:translateY(-1px);
    background:rgba(249,115,22,.10);
    border-color:rgba(249,115,22,.24);
}

.plans-showcase{
    margin-top:28px;
    width:min(980px,100%);
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}

.pricing-plan-card{
    border:1px solid var(--line);
    border-radius:28px;
    padding:22px;
    background:var(--panel);
    box-shadow:var(--shadow-soft);
    display:flex;
    flex-direction:column;
    gap:14px;
    text-align:left;
}

.pricing-plan-card--featured{
    border-color:rgba(249,115,22,.26);
    background:
        radial-gradient(circle at top right, rgba(249,115,22,.10), transparent 30%),
        var(--panel);
}

.pricing-plan-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
}

.pricing-plan-name{
    font-size:18px;
    font-weight:900;
    color:var(--text);
}

.pricing-plan-price{
    margin-top:6px;
    font-size:34px;
    line-height:1;
    font-weight:900;
    color:#fb923c;
}

.pricing-plan-price span{
    font-size:14px;
    color:var(--muted);
    font-weight:800;
    margin-left:4px;
}

.pricing-plan-badge{
    padding:8px 12px;
    border-radius:999px;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    background:rgba(249,115,22,.12);
    color:#fb923c;
    border:1px solid rgba(249,115,22,.18);
}

.pricing-plan-copy{
    font-size:14px;
    line-height:1.7;
    color:var(--muted);
}

.pricing-plan-list{
    margin:0;
    padding-left:18px;
    display:flex;
    flex-direction:column;
    gap:8px;
    color:var(--text);
    font-size:14px;
    line-height:1.6;
}

.pricing-plan-btn{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:18px;
    padding:13px 16px;
    font-weight:800;
    font-size:14px;
    text-decoration:none;
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    color:#fff;
    cursor:pointer;
}

.chat-stack{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.chat-row{
    display:flex;
    gap:14px;
    width:100%;
}

.chat-row.user{justify-content:flex-end}
.chat-row.ai{justify-content:flex-start}

.bubble-user{
    max-width:min(76%,760px);
    background:linear-gradient(135deg,#111827,#0f172a);
    border:1px solid rgba(255,255,255,.06);
    color:#fff;
    border-radius:28px 28px 10px 28px;
    padding:16px 18px;
    box-shadow:var(--shadow-soft);
    font-size:15px;
    line-height:1.7;
    font-weight:600;
}

.ai-block{
    width:100%;
    max-width:100%;
}

.ai-bubble-wrap{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.ai-avatar{
    width:42px;
    height:42px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    color:#fff;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    font-weight:900;
    box-shadow:0 10px 24px rgba(249,115,22,.22);
}

.bubble-ai{
    max-width:min(90%,980px);
    background:var(--panel);
    border:1px solid var(--line);
    color:var(--text);
    border-radius:28px 28px 28px 10px;
    padding:16px 18px;
    box-shadow:var(--shadow-soft);
    font-size:15px;
    line-height:1.75;
    white-space:pre-wrap;
    word-break:break-word;
}

.bubble-ai.error{
    background:rgba(127,29,29,.18);
    border-color:rgba(239,68,68,.22);
    color:#fecaca;
}

.assistant-widget{
    margin:16px 0 0 56px;
}

.loading-bubble{
    display:flex;
    align-items:center;
    gap:12px;
    width:max-content;
    max-width:calc(100% - 60px);
    padding:16px 18px;
    border-radius:28px 28px 28px 10px;
    background:var(--panel);
    border:1px solid var(--line);
    color:var(--muted);
    box-shadow:var(--shadow-soft);
    font-weight:700;
}

.spinner{
    width:16px;
    height:16px;
    border-radius:999px;
    border:2px solid rgba(249,115,22,.18);
    border-top-color:var(--primary);
    animation:spin .8s linear infinite;
}



.soft-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.04);
    color:var(--text);
    font-size:12px;
    font-weight:800;
}



.trip-map iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
    filter:invert(92%) hue-rotate(180deg);
}




.tabs{
    margin-top:22px;
    display:flex;
    gap:8px;
    width:max-content;
    max-width:100%;
    overflow:auto;
    padding:8px;
    border-radius:22px;
    border:1px solid var(--line);
    background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
    backdrop-filter: blur(8px);
}

.tab-btn{
    border:none;
    background:transparent;
    color:var(--muted);
    border-radius:16px;
    padding:12px 18px;
    font-size:14px;
    font-weight:800;
    white-space:nowrap;
    cursor:pointer;
    transition:.2s ease;
}

.tab-btn.active{
    background:linear-gradient(135deg, var(--primary), var(--primary-2));
    color:#fff;
    box-shadow:0 10px 22px rgba(249,115,22,.35);
}

.tab-content{
    margin-top:22px;
    min-height:260px;
}

.timeline-layout{
    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:22px;
}

.expandable-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.expand-card{
    border-radius:26px;
    border:1px solid var(--line);
    background:var(--panel);
    box-shadow:var(--shadow-soft);
    overflow:hidden;
}

.expand-summary{
    list-style:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:18px 20px;
    font-weight:900;
}

.expand-summary::-webkit-details-marker{display:none}

.expand-summary-main{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;
    flex:1;
}

.expand-icon{
    width:54px;
    height:54px;
    border-radius:20px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    background:linear-gradient(135deg, rgba(249,115,22,.14), rgba(251,113,133,.08));
    color:#fb923c;
}

.expand-title-wrap{
    min-width:0;
}

.expand-title{
    margin:0;
    font-size:18px;
    font-weight:900;
    color:var(--text);
}

.expand-subtitle{
    margin-top:4px;
    font-size:13px;
    font-weight:700;
    color:var(--muted);
}

.expand-right{
    text-align:right;
    flex:0 0 auto;
}

.expand-price{
    font-size:28px;
    font-weight:900;
    line-height:1;
    color:#fb923c;
}

.expand-chevron{
    font-size:14px;
    color:var(--muted);
    transition:transform .2s ease;
}

.expand-card[open] .expand-chevron{
    transform:rotate(180deg);
}

.expand-body{
    padding:0 20px 20px;
    display:grid;
    gap:16px;
}

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

.expand-panel{
    border:1px solid var(--line);
    border-radius:20px;
    padding:14px;
    background:rgba(255,255,255,.03);
}

.expand-panel h5{
    margin:0 0 10px;
    font-size:12px;
    font-weight:900;
    color:#fb923c;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.expand-panel div{
    color:var(--text);
    font-size:14px;
    line-height:1.65;
}

.quote-estimate{
    border:1px solid var(--line);
    border-radius:18px;
    padding:12px;
    background:rgba(255,255,255,.03);
    margin-bottom:14px;
}

.quote-estimate-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:8px;
    padding:8px 2px;
    font-size:13px;
    color:var(--muted);
    border-bottom:1px dashed rgba(148,163,184,.2);
}

.quote-estimate-row strong{
    color:var(--text);
    font-weight:800;
}

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

.quote-estimate-row--total{
    font-size:15px;
}

.filters-toolbar{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:16px;
}

.chip-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 14px;
    border-radius:999px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.04);
    color:var(--text);
    font-size:13px;
    font-weight:800;
}

.chip-btn.active{
    background:rgba(37,99,235,.14);
    border-color:rgba(37,99,235,.28);
    color:#93c5fd;
}

.pagination-wrap{
    margin-top:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.pagination-btn{
    min-width:42px;
    height:42px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.04);
    color:var(--text);
    font-size:13px;
    font-weight:900;
}

.pagination-btn.active{
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    color:#fff;
    border:none;
}

.tips-card{
    border-radius:28px;
    border:1px solid var(--line);
    background:var(--panel);
    box-shadow:var(--shadow-soft);
    padding:22px;
    position:sticky;
    top:20px;
    height:max-content;
}

.tips-title{
    margin:0 0 18px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    font-weight:900;
    color:var(--text);
}

.tips-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.tip-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:var(--muted);
    font-size:14px;
    line-height:1.7;
}

.tip-dot{
    width:8px;
    height:8px;
    border-radius:999px;
    background:var(--primary);
    margin-top:8px;
    flex:0 0 auto;
}

.activity-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.activity-card{
    border-radius:24px;
    border:1px solid var(--line);
    background:var(--panel);
    box-shadow:var(--shadow-soft);
    padding:18px;
    display:flex;
    align-items:center;
    gap:16px;
}

.activity-icon{
    width:56px;
    height:56px;
    border-radius:20px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    background:linear-gradient(135deg, rgba(249,115,22,.12), rgba(251,113,133,.08));
    color:#fb923c;
}

.activity-title{
    margin:0 0 6px;
    font-size:16px;
    font-weight:900;
    color:var(--text);
}

.activity-meta{
    color:var(--muted);
    font-size:13px;
    font-weight:700;
}

.hotel-results-layout{
    display:grid;
    grid-template-columns:1.25fr .9fr;
    gap:18px;
}

.hotel-results-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.hotel-google-card{
    border:1px solid var(--line);
    border-radius:26px;
    background:var(--panel);
    box-shadow:var(--shadow-soft);
    overflow:hidden;
    display:grid;
    grid-template-columns:250px 1fr;
    min-height:220px;
}

.hotel-google-media{
    position:relative;
    min-height:220px;
    background:#0f172a;
}

.hotel-google-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.hotel-google-badge{
    position:absolute;
    top:14px;
    left:14px;
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 10px;
    border-radius:999px;
    background:rgba(255,255,255,.92);
    color:#111827;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.hotel-google-save{
    position:absolute;
    top:14px;
    right:14px;
    width:38px;
    height:38px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.4);
    background:rgba(255,255,255,.88);
    color:#111827;
    display:grid;
    place-items:center;
    font-size:16px;
    font-weight:900;
}

.hotel-google-body{
    padding:18px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.hotel-google-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
}

.hotel-google-name{
    margin:0;
    font-size:28px;
    line-height:1.08;
    font-weight:900;
    letter-spacing:-.04em;
    color:var(--text);
}

.hotel-google-pricebox{
    text-align:right;
    flex:0 0 auto;
}

.hotel-google-price-top{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(34,197,94,.12);
    color:var(--success);
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.05em;
    margin-bottom:8px;
}

.hotel-google-price{
    font-size:42px;
    line-height:1;
    font-weight:900;
    color:var(--success);
    margin:0;
}

.hotel-google-price-sub{
    margin-top:4px;
    font-size:13px;
    color:var(--muted);
    font-weight:700;
}

.hotel-google-rating{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
    font-size:14px;
    font-weight:700;
    color:var(--muted);
}

.hotel-google-rating strong{
    color:var(--text);
    font-weight:900;
}

.hotel-google-meta{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
}

.hotel-google-meta-chip{
    border:1px solid var(--line);
    border-radius:16px;
    background:rgba(255,255,255,.03);
    padding:10px 12px;
    font-size:13px;
    font-weight:700;
    color:var(--text);
}

.hotel-google-amenities{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.hotel-google-amenity{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 12px;
    border-radius:999px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.03);
    color:var(--text);
    font-size:13px;
    font-weight:700;
}

.hotel-google-footer{
    margin-top:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding-top:12px;
    border-top:1px solid var(--line);
}

.hotel-google-footer-copy{
    color:var(--muted);
    font-size:13px;
    line-height:1.6;
    max-width:70%;
}

.hotel-google-btn{
    border:none;
    border-radius:18px;
    padding:13px 18px;
    font-size:14px;
    font-weight:800;
    cursor:pointer;
    color:#fff;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    white-space:nowrap;
}

.hotel-map-card{
    border:1px solid var(--line);
    border-radius:26px;
    background:var(--panel);
    box-shadow:var(--shadow-soft);
    overflow:hidden;
    min-height:100%;
    display:flex;
    flex-direction:column;
    position:sticky;
    top:20px;
}

.hotel-map-head{
    padding:16px 18px;
    border-bottom:1px solid var(--line);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.hotel-map-head h4{
    margin:0;
    font-size:16px;
    font-weight:900;
    color:var(--text);
}

.hotel-map-head span{
    color:var(--muted);
    font-size:13px;
    font-weight:700;
}

.hotel-map-body{
    flex:1;
    min-height:var(--map-height);
    background:#0f172a;
    position:relative;
}

.hotel-map-body iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
    filter:invert(92%) hue-rotate(180deg);
}

.hotel-map-overlay-cards{
    position:absolute;
    left:14px;
    right:14px;
    bottom:14px;
    display:flex;
    gap:10px;
    overflow:auto;
    pointer-events:none;
}

.hotel-map-mini-card{
    min-width:220px;
    max-width:220px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:18px;
    padding:12px;
    background:rgba(15,23,42,.90);
    color:#fff;
    backdrop-filter:blur(12px);
    box-shadow:var(--shadow-soft);
    pointer-events:auto;
}

.hotel-map-mini-card h5{
    margin:0 0 6px;
    font-size:14px;
    font-weight:900;
}

.hotel-map-mini-card div{
    font-size:12px;
    line-height:1.55;
    color:#dbeafe;
}

.travel-results-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:18px;
}

.travel-results-title{
    margin:10px 0 0;
    font-size:clamp(28px,4vw,42px);
    line-height:1;
    letter-spacing:-.05em;
    font-weight:900;
    color:var(--text);
}

.travel-results-copy{
    margin:12px 0 0;
    max-width:780px;
    color:var(--muted);
    font-size:15px;
    line-height:1.75;
    font-weight:500;
}

.flight-logo-badge{
    width:56px;
    height:56px;
    border-radius:18px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.06);
    display:grid;
    place-items:center;
    overflow:hidden;
    flex:0 0 auto;
}

.flight-logo-badge img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    background:#fff;
}

.flight-route-grid{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    gap:14px;
    align-items:center;
}

.flight-stop-line{
    position:relative;
    min-width:120px;
    text-align:center;
}

.flight-stop-line::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:50%;
    height:2px;
    background:linear-gradient(90deg, rgba(148,163,184,.18), rgba(249,115,22,.35), rgba(148,163,184,.18));
    transform:translateY(-50%);
}

.flight-stop-pill{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 10px;
    border-radius:999px;
    background:var(--panel);
    border:1px solid var(--line);
    color:var(--muted);
    font-size:11px;
    font-weight:900;
    letter-spacing:.03em;
    z-index:1;
}

.flight-airport-time{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.flight-airport-time .time{
    font-size:28px;
    line-height:1;
    font-weight:900;
    color:var(--text);
}

.flight-airport-time .airport{
    font-size:14px;
    font-weight:800;
    color:var(--text);
    line-height:1.5;
}

.flight-airport-time .meta{
    font-size:12px;
    color:var(--muted);
    font-weight:700;
}

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

.price-chart{
    width:100%;
    height:74px;
    border-radius:16px;
    border:1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(249,115,22,.10), rgba(249,115,22,.02)),
        rgba(255,255,255,.03);
    padding:10px 12px 8px;
    display:flex;
    align-items:flex-end;
    gap:8px;
}

.price-bar{
    flex:1;
    border-radius:10px 10px 4px 4px;
    background:linear-gradient(180deg, rgba(249,115,22,.95), rgba(251,113,133,.85));
    min-height:12px;
}

.flight-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.flight-action-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:1px solid var(--line);
    border-radius:16px;
    padding:11px 14px;
    background:rgba(255,255,255,.04);
    color:var(--text);
    font-size:13px;
    font-weight:800;
    text-decoration:none;
    cursor:pointer;
}

.flight-action-btn--primary{
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    color:#fff;
    border:none;
}

.selection-drawer{
    position:fixed;
    top:88px;
    right:18px;
    width:360px;
    max-height:calc(100vh - 180px);
    overflow:auto;
    z-index:42;
    border:1px solid var(--line);
    border-radius:26px;
    background:var(--panel);
    box-shadow:var(--shadow);
    display:none;
}

.selection-drawer.visible{display:block}

.selection-head{
    padding:18px;
    border-bottom:1px solid var(--line);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.selection-head h4{
    margin:0;
    font-size:18px;
    font-weight:900;
}

.selection-body{
    padding:18px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.selection-item{
    border:1px solid var(--line);
    border-radius:20px;
    padding:14px;
    background:rgba(255,255,255,.03);
}

.selection-item h5{
    margin:0 0 6px;
    font-size:15px;
    font-weight:900;
}

.selection-item div{
    font-size:13px;
    line-height:1.6;
    color:var(--muted);
}

.selection-footer{
    padding:18px;
    border-top:1px solid var(--line);
    display:flex;
    flex-direction:column;
    gap:10px;
}

.ghost-btn,.primary-btn{
    width:100%;
    border-radius:18px;
    padding:13px 16px;
    font-size:14px;
    font-weight:800;
}

.ghost-btn{
    border:1px solid var(--line);
    background:rgba(255,255,255,.04);
    color:var(--text);
}

.primary-btn{
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    color:#fff;
}

.checkout-modal{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:90;
    background:rgba(2,6,23,.62);
    backdrop-filter:blur(8px);
    padding:18px;
}

.checkout-modal.visible{display:flex}

.checkout-card{
    width:min(980px,100%);
    max-height:90vh;
    overflow:auto;
    border-radius:30px;
    border:1px solid var(--line);
    background:var(--panel);
    box-shadow:var(--shadow);
}

.checkout-header{
    padding:22px 24px;
    border-bottom:1px solid var(--line);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.checkout-header h3{
    margin:0;
    font-size:28px;
    letter-spacing:-.04em;
    font-weight:900;
}

.checkout-sub{
    color:var(--muted);
    font-size:14px;
    margin-top:6px;
}

.checkout-content{
    display:grid;
    grid-template-columns:1fr .86fr;
    gap:22px;
    padding:24px;
}

.checkout-section{
    border:1px solid var(--line);
    border-radius:24px;
    background:rgba(255,255,255,.03);
    padding:18px;
}

.checkout-section h4{
    margin:0 0 14px;
    font-size:18px;
    font-weight:900;
}

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

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

.form-field label{
    display:block;
    margin-bottom:6px;
    font-size:12px;
    font-weight:800;
    color:var(--muted-2);
    text-transform:uppercase;
    letter-spacing:.06em;
}

.form-field input,.form-field select,.form-field textarea{
    width:100%;
    border:1px solid var(--line);
    border-radius:16px;
    background:rgba(255,255,255,.04);
    color:var(--text);
    padding:12px 13px;
    outline:none;
    font:inherit;
}

.receipt-box{
    border:1px solid var(--line);
    border-radius:22px;
    background:rgba(255,255,255,.03);
    padding:16px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.receipt-row{
    display:flex;
    justify-content:space-between;
    gap:10px;
    font-size:14px;
    color:var(--text);
}

.receipt-row.muted{
    color:var(--muted);
}

.receipt-row.total{
    font-size:18px;
    font-weight:900;
    padding-top:12px;
    border-top:1px solid var(--line);
}

.receipt-actions{
    display:flex;
    gap:10px;
    margin-top:14px;
}

.followups{
    margin-top:22px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.followup-btn{
    border:1px solid var(--line);
    background:rgba(255,255,255,.04);
    color:var(--text);
    border-radius:999px;
    padding:10px 14px;
    font-size:13px;
    font-weight:800;
    cursor:pointer;
}

.followup-btn:hover{
    background:rgba(249,115,22,.10);
    border-color:rgba(249,115,22,.24);
}

.composer-wrap{
    position:fixed;
    left:var(--composer-left);
    right:0;
    bottom:0;
    z-index:40;
    padding:18px 16px 20px;
    background:linear-gradient(180deg, transparent, rgba(2,6,23,.46) 20%, rgba(2,6,23,.92) 80%);
    pointer-events:none;
}

body.light-mode .composer-wrap{
    background:linear-gradient(180deg, transparent, rgba(248,250,252,.46) 20%, rgba(248,250,252,.92) 80%);
}

.composer,.composer-disclaimer{pointer-events:auto}

.composer{
    width:min(1080px,calc(100% - 8px));
    margin:0 auto;
    border-radius:36px;
    border:1px solid var(--line);
    background:var(--panel);
    backdrop-filter:blur(18px);
    box-shadow:0 24px 60px rgba(0,0,0,.28);
    padding:10px;
}

.composer-top{
    display:none;
    padding:8px 10px 10px;
}

.composer-top.active{
    display:block;
}

.filters-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:10px;
}

.filter-box label{
    display:block;
    margin-bottom:6px;
    color:var(--muted-2);
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.filter-input{
    width:100%;
    border:1px solid var(--line);
    border-radius:14px;
    background:rgba(255,255,255,.03);
    color:var(--text);
    padding:11px 12px;
    outline:none;
    font:inherit;
    font-size:14px;
}

.composer-main{
    display:flex;
    align-items:flex-end;
    gap:10px;
    padding:4px;
}

.composer-input-wrap{
    flex:1;
    min-width:0;
}

.composer-input{
    width:100%;
    min-height:52px;
    max-height:180px;
    resize:none;
    border:none;
    outline:none;
    background:transparent;
    color:var(--text);
    font:inherit;
    font-size:16px;
    line-height:1.65;
    padding:12px 8px 12px 2px;
    overflow:auto;
}

.composer-input.disabled-by-filters{
    opacity:.5;
    cursor:not-allowed;
}

.composer-actions{
    display:flex;
    align-items:center;
    gap:8px;
    flex:0 0 auto;
}

.send-btn{
    width:54px;
    height:54px;
    border-radius:999px;
    background:#111827;
    color:#fff;
    display:grid;
    place-items:center;
    box-shadow:0 10px 24px rgba(0,0,0,.2);
}

.send-btn.active{
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
}

.send-btn:disabled{
    opacity:.6;
    cursor:not-allowed;
}

.composer-disclaimer{
    text-align:center;
    margin-top:10px;
    color:var(--muted-2);
    font-size:10px;
    font-weight:800;
    letter-spacing:.04em;
}

.lead-modal{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:80;
    background:rgba(2,6,23,.56);
    backdrop-filter:blur(6px);
    padding:18px;
}

.lead-modal.visible{display:flex}

.lead-card{
    width:min(560px,100%);
    border-radius:30px;
    border:1px solid var(--line);
    background:var(--panel);
    box-shadow:var(--shadow);
    padding:24px;
}

.lead-card h3{
    margin:0 0 10px;
    font-size:30px;
    line-height:1.04;
    letter-spacing:-.04em;
    color:var(--text);
}

.lead-card p{
    margin:0 0 18px;
    color:var(--muted);
    line-height:1.7;
}

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

.lead-grid .full{grid-column:1/-1}

.lead-input{
    width:100%;
    border:1px solid var(--line);
    border-radius:16px;
    background:rgba(255,255,255,.04);
    color:var(--text);
    padding:13px 14px;
    outline:none;
    font:inherit;
}

.lead-actions{
    margin-top:18px;
    display:flex;
    justify-content:flex-end;
    gap:10px;
}

.lead-btn{
    border:none;
    border-radius:16px;
    padding:12px 16px;
    font-weight:800;
    cursor:pointer;
}

.lead-btn.secondary{
    border:1px solid var(--line);
    background:rgba(255,255,255,.06);
    color:var(--text);
}

.lead-btn.primary{
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    color:#fff;
}

.travel-results-widget{width:100%}

#resultsMount{
    display:none;
}

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

@media (max-width:1279px){
    .trip-hero{grid-template-columns:1fr}
    .timeline-layout{grid-template-columns:1fr}
    .tips-card{position:static}
    .filters-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
    .plans-showcase{grid-template-columns:1fr}
    .hotel-results-layout{grid-template-columns:1fr}
    .hotel-map-body{min-height:340px}
    .checkout-content{grid-template-columns:1fr}
}

@media (max-width:1023px){
    .mobile-menu-btn{display:grid}
    .assistant-widget{margin-left:0}
    .bubble-user,.bubble-ai{max-width:100%}
    .composer-wrap{left:0 !important}
    .selection-drawer{
        right:12px;
        left:12px;
        width:auto;
        top:auto;
        bottom:140px;
        max-height:50vh;
    }
}

@media (max-width:767px){
    .topbar{padding:0 16px}
    .content-scroll{padding:22px 12px 200px}
    .filters-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .expand-grid-2,
    .hotel-meta-grid,
    .lead-grid,
    .activity-grid,
    .flight-detail-grid,
    .form-grid{
        grid-template-columns:1fr;
    }
    .gallery-thumb{min-width:150px;width:150px;height:104px}
    .tabs{width:100%}
    .flight-route-grid{grid-template-columns:1fr}
    .hotel-google-card{grid-template-columns:1fr}
    .hotel-google-media{min-height:200px}
    .hotel-google-meta{grid-template-columns:1fr}
    .hotel-google-footer{flex-direction:column;align-items:flex-start}
    .hotel-google-footer-copy{max-width:100%}
    .receipt-actions{flex-direction:column}
}

@media (max-width:520px){
    .filters-grid{grid-template-columns:1fr}
    .composer-main{flex-wrap:wrap}
    .composer-actions{width:100%;justify-content:flex-end}
}

.results-mount{
    margin-top:24px;
}

.travel-results-shell{
    display:block;
    width:100%;
}

.travel-results-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:18px;
}

.travel-results-title{
    margin:10px 0 0;
    font-size:clamp(28px,4vw,42px);
    line-height:1;
    letter-spacing:-.05em;
    font-weight:900;
    color:var(--text);
}

.travel-results-copy{
    margin:12px 0 0;
    max-width:780px;
    color:var(--muted);
    font-size:15px;
    line-height:1.75;
    font-weight:500;
}

.process-loader{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.process-loader__bar{
    width:100%;
    height:10px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    overflow:hidden;
    position:relative;
}

.process-loader__fill{
    position:absolute;
    inset:0;
    width:40%;
    border-radius:999px;
    background:linear-gradient(90deg,var(--primary),var(--primary-2),#8b5cf6);
    animation:processLoaderSlide 1.2s ease-in-out infinite;
}

.process-loader__steps{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.process-loader__step{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 10px;
    border-radius:999px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.04);
    color:var(--muted);
    font-size:12px;
    font-weight:800;
}

.process-loader__step.is-active{
    color:#fff;
    border-color:rgba(249,115,22,.28);
    background:rgba(249,115,22,.14);
}

@keyframes processLoaderSlide{
    0%{transform:translateX(-120%)}
    100%{transform:translateX(260%)}
}

.destination-thumb-strip{
    display:flex;
    gap:12px;
    overflow:auto;
    margin:14px 0 18px;
    padding-bottom:4px;
}

.hotel-map-selected-card{
    margin:14px;
    border:1px solid var(--line);
    border-radius:18px;
    padding:12px;
    background:rgba(255,255,255,.03);
    color:var(--text);
    font-size:13px;
    line-height:1.6;
}
