/* Quick Travel Guides - clean, white, bootstrap-inspired */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --q-body: #1b2a5b;
    --q-secondary: #46506e;
    --q-muted: #6c757d;
    --q-white: #ffffff;
    --q-light: #f8f9fa;
    --q-border: #dee2e6;
    --q-primary: #ee4d4d;
    --q-primary-dark: #d63a3a;
    --q-primary-bg: #fdeeee;
    --q-navy: #1b2a5b;
    --q-success: #146c43;
    --q-success-bg: #d1e7dd;
    --q-warning-text: #664d03;
    --q-warning-bg: #fff3cd;
    --q-dark: #1b2a5b;
    --q-radius: 8px;
    --q-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.qtg-page {
    margin: 0;
    background: var(--q-white);
    color: var(--q-body);
    font-family: var(--q-font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.qtg-page * { box-sizing: border-box; }
.qtg-page img { max-width: 100%; height: auto; }
.qtg-page a { color: var(--q-primary); text-decoration: none; }
.qtg-page a:hover { color: var(--q-primary-dark); text-decoration: underline; }

/* ===== NAV ===== */
#qtg-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 14px 32px;
    background: var(--q-white);
    border-bottom: 1px solid var(--q-border);
    position: sticky;
    top: 0;
    z-index: 900;
}

.q-mark {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--q-body) !important;
    text-decoration: none !important;
}

.q-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

@media (max-width: 540px) {
    .q-logo { max-width: 160px; }
}

.q-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
}

.q-links > li > a {
    color: var(--q-secondary);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none !important;
}

.q-links > li > a:hover { color: var(--q-body); }

.q-has-drop { position: relative; }

/* padding-top (not margin) keeps the hover surface continuous between trigger and panel */
.q-drop {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 14px;
    width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    transition-delay: 0.15s;
}

.q-drop-panel {
    background: var(--q-white);
    border: 1px solid var(--q-border);
    border-radius: var(--q-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 10px;
}

.q-has-drop:hover .q-drop,
.q-has-drop:focus-within .q-drop {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.q-drop-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--q-muted);
    padding: 6px 10px;
}

.q-drop-item {
    display: block;
    padding: 9px 10px;
    border-radius: 6px;
    text-decoration: none !important;
}

.q-drop-item:hover { background: var(--q-light); }

.q-drop-title {
    display: block;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--q-body);
}

.q-drop-desc {
    display: block;
    font-size: 13px;
    color: var(--q-muted);
    line-height: 1.45;
}

.q-cta {
    background: var(--q-primary);
    color: #fff !important;
    font-weight: 600;
    font-size: 14.5px;
    padding: 9px 18px;
    border-radius: var(--q-radius);
    white-space: nowrap;
    text-decoration: none !important;
}

.q-cta:hover { background: var(--q-primary-dark); }

.q-hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.q-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--q-body);
    margin: 5px 0;
    transition: all 0.2s ease;
}
.q-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.q-hamburger.active span:nth-child(2) { opacity: 0; }
.q-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== LAYOUT ===== */
.q-section { padding: 56px 32px; }
.q-section-alt { background: var(--q-light); border-top: 1px solid var(--q-border); border-bottom: 1px solid var(--q-border); }
.q-inner { max-width: 1080px; margin: 0 auto; }
.q-inner-narrow { max-width: 760px; margin: 0 auto; }

.q-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--q-primary);
    margin-bottom: 12px;
}

.qtg-page h1, .qtg-page h2, .qtg-page h3 {
    font-family: var(--q-font);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    font-weight: 700;
}

.qtg-page h1 { font-size: clamp(30px, 4.5vw, 44px); }
.qtg-page h2 { font-size: clamp(24px, 3vw, 30px); margin-top: 44px; }
.qtg-page h3 { font-size: 19px; margin-top: 28px; }

.q-lead {
    font-size: 18px;
    color: var(--q-secondary);
    line-height: 1.6;
    max-width: 680px;
}

/* ===== HERO ===== */
.q-hero {
    padding: 72px 32px 56px;
    background: var(--q-white);
    text-align: center;
    border-bottom: 1px solid var(--q-border);
}

.q-hero .q-lead { margin: 0 auto 28px; }

.q-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.q-affiliation-note {
    font-size: 12.5px;
    color: var(--q-muted);
    margin: 0 auto 28px;
}

.q-btn {
    display: inline-block;
    background: var(--q-primary);
    color: #fff !important;
    font-family: var(--q-font);
    font-weight: 600;
    font-size: 15.5px;
    padding: 12px 24px;
    border-radius: var(--q-radius);
    border: 1px solid var(--q-primary);
    cursor: pointer;
    text-decoration: none !important;
}

.q-btn:hover { background: var(--q-primary-dark); border-color: var(--q-primary-dark); }

.q-btn-ghost {
    background: var(--q-white);
    color: var(--q-body) !important;
    border: 1px solid var(--q-border);
}

.q-btn-ghost:hover { background: var(--q-light); }

/* ===== CARDS ===== */
.q-grid { display: grid; gap: 20px; }
.q-grid-3 { grid-template-columns: repeat(3, 1fr); }
.q-grid-2 { grid-template-columns: repeat(2, 1fr); }

.q-card {
    background: var(--q-white);
    border: 1px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 24px;
}

.q-card h3 { margin-top: 0; }
.q-card p { color: var(--q-secondary); font-size: 15px; margin: 8px 0 0; }

.q-card-link { display: block; color: inherit !important; text-decoration: none !important; transition: border-color 0.15s ease; }
.q-card-link:hover { border-color: var(--q-primary); }

.q-stat {
    font-size: 34px;
    font-weight: 700;
    color: var(--q-primary);
    line-height: 1.1;
    margin-bottom: 6px;
}

.q-stat-label { font-size: 14px; color: var(--q-muted); }

/* ===== DESTINATION CARDS ===== */
.q-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.q-dest-card {
    display: block;
    background: var(--q-white);
    border: 1px solid var(--q-border);
    border-radius: var(--q-radius);
    overflow: hidden;
    color: inherit !important;
    text-decoration: none !important;
    transition: border-color 0.15s ease;
}

.q-dest-card:hover { border-color: var(--q-primary); }

.q-dest-card img {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.q-dest-body { padding: 14px 16px; }

.q-dest-city { display: block; font-weight: 700; font-size: 16px; }

.q-dest-meta { display: block; font-size: 13px; color: var(--q-muted); margin-top: 3px; }

@media (max-width: 900px) {
    .q-dest-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== DEAL / SAMPLE STACK CARDS ===== */
.q-deal-card {
    background: var(--q-white);
    border: 1px solid var(--q-border);
    border-radius: var(--q-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.q-deal-card > img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.q-deal-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.q-deal-body h3 { margin: 0 0 4px; font-size: 20px; }
.q-deal-hook { font-size: 14px; color: var(--q-muted); margin: 0 0 14px; }

.q-deal-stack { list-style: none; margin: 0 0 12px; padding: 0; font-size: 14px; }
.q-deal-stack li { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; border-bottom: 1px dashed var(--q-border); }
.q-deal-stack li:last-child { border-bottom: 0; }
.q-deal-stack .cost { font-weight: 600; color: var(--q-body); white-space: nowrap; }
.q-deal-stack .save { color: var(--q-success); font-weight: 600; white-space: nowrap; }
.q-deal-total { font-weight: 700; border-top: 2px solid var(--q-body) !important; margin-top: 2px; }
.q-deal-total span:first-child { font-weight: 700; }

.q-deal-note { font-size: 12.5px; color: var(--q-muted); margin-top: auto; padding-top: 4px; line-height: 1.5; }

/* ===== FEATURE BAND ===== */
.q-feature {
    display: block;
    border-radius: var(--q-radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 320px;
    color: #fff !important;
    text-decoration: none !important;
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.q-feature-inner { padding: 40px 44px; max-width: 560px; }
.q-feature-kicker { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.9; }
.q-feature h3 { color: #fff; font-size: clamp(24px, 3.2vw, 34px); margin: 12px 0 12px; line-height: 1.1; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.q-feature p { color: #eef1f6; font-size: 16px; line-height: 1.6; margin: 0 0 16px; max-width: 460px; }
.q-feature-link { font-weight: 600; font-size: 15px; color: #fff; }

@media (max-width: 900px) {
    .q-feature-inner { padding: 28px 24px; }
}

/* ===== BADGES ===== */
.q-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--q-primary-bg);
    color: var(--q-primary-dark);
}

.q-badge-gold { background: var(--q-warning-bg); color: var(--q-warning-text); }
.q-badge-green { background: var(--q-success-bg); color: var(--q-success); }

/* ===== TABLES ===== */
.q-table-wrap { overflow-x: auto; border-radius: var(--q-radius); border: 1px solid var(--q-border); background: var(--q-white); }

.q-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }

.q-table th {
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--q-muted);
    background: var(--q-light);
    padding: 11px 16px;
    border-bottom: 1px solid var(--q-border);
    white-space: nowrap;
}

.q-table th.q-sortable { cursor: pointer; user-select: none; }
.q-table th.q-sortable:hover { color: var(--q-body); }
.q-table th.q-sort-asc::after { content: ' \2191'; color: var(--q-primary); }
.q-table th.q-sort-desc::after { content: ' \2193'; color: var(--q-primary); }

.q-table td { padding: 12px 16px; border-bottom: 1px solid #f1f3f5; vertical-align: top; }
.q-table tr:last-child td { border-bottom: 0; }
.q-table tr:hover td { background: var(--q-light); }

/* ===== FILTER BAR ===== */
.q-filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 24px 0 16px;
}

.q-filter-bar input[type="search"],
.q-filter-bar input[type="text"],
.q-filter-bar select {
    font-family: var(--q-font);
    font-size: 15px;
    color: var(--q-body);
    background: var(--q-white);
    border: 1px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 10px 13px;
}

.q-filter-bar input[type="search"] { flex: 1; min-width: 220px; }
.q-filter-bar select { min-width: 150px; }

.q-filter-bar input:focus, .q-filter-bar select:focus {
    outline: 0;
    border-color: var(--q-primary);
    box-shadow: 0 0 0 3px rgba(238, 77, 77, 0.15);
}

.q-result-count { font-size: 14px; color: var(--q-muted); margin-bottom: 12px; }

.q-check {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14.5px;
    color: var(--q-secondary);
    padding: 10px 4px;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.q-check input { accent-color: var(--q-primary); width: 16px; height: 16px; }

/* ===== PLANNER FORM ===== */
.q-planner-form {
    background: var(--q-white);
    border: 1px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 26px;
    margin: 28px 0;
}

.q-form-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 14px; }

.q-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--q-secondary);
    margin-bottom: 5px;
}

.q-field input, .q-field select {
    width: 100%;
    font-family: var(--q-font);
    font-size: 15px;
    color: var(--q-body);
    background: var(--q-white);
    border: 1px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 10px 12px;
}

.q-field input:focus, .q-field select:focus {
    outline: 0;
    border-color: var(--q-primary);
    box-shadow: 0 0 0 3px rgba(238, 77, 77, 0.15);
}

.q-field-hint { font-size: 12.5px; color: var(--q-muted); margin-top: 4px; }

/* ===== RESULT CARDS (planner) ===== */
.q-trip-card {
    background: var(--q-white);
    border: 1px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 24px 26px;
    margin-bottom: 16px;
    overflow: hidden;
}

.q-trip-img {
    display: block;
    width: calc(100% + 52px);
    height: 210px;
    object-fit: cover;
    margin: -24px -26px 18px;
}

.q-trip-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.q-trip-dest { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }

.q-trip-net { text-align: right; }

.q-trip-net .amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--q-success);
}

.q-trip-net .label { font-size: 12px; color: var(--q-muted); display: block; }

.q-trip-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; margin-top: 16px; }

.q-stack-list { list-style: none; margin: 0; padding: 0; font-size: 14.5px; }

.q-stack-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px dashed var(--q-border);
}

.q-stack-list li:last-child { border-bottom: 0; }
.q-stack-list .save { color: var(--q-success); font-weight: 600; }
.q-stack-list .cost { font-weight: 600; }
.q-stack-list .total-row { font-weight: 700; border-top: 2px solid var(--q-body); }

.q-trip-events { margin-top: 16px; }

.q-ev-head { display: block; font-size: 13px; margin-bottom: 6px; }

.q-ev-list { list-style: none; margin: 0; padding: 0; }

.q-ev-list li { font-size: 13.5px; margin-bottom: 7px; line-height: 1.4; }

.q-ev-meta { display: block; font-size: 12px; color: var(--q-muted); }

/* ===== GUIDE / ARTICLE ===== */
.q-article { padding: 56px 32px 72px; }
.q-article p { margin: 0 0 16px; color: var(--q-secondary); }
.q-article ul, .q-article ol { color: var(--q-secondary); padding-left: 24px; margin: 0 0 16px; }
.q-article li { margin-bottom: 7px; }

.q-callout {
    background: var(--q-primary-bg);
    border: 1px solid #f6c6c6;
    border-radius: var(--q-radius);
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 15px;
    color: var(--q-body);
}

.q-callout-gold { background: var(--q-warning-bg); border-color: #ffe69c; }

.q-updated { font-size: 13px; color: var(--q-muted); margin-bottom: 24px; }

/* ===== BLOG / STORY ===== */
.q-blog { background: var(--q-white); }

.q-blog-hero {
    min-height: 72vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: #fff;
    padding: 48px 32px;
}

.q-blog-hero-inner { max-width: 820px; margin: 0 auto; width: 100%; }

.q-blog-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 14px;
}

.q-blog-hero h1 {
    color: #fff;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.05;
    margin: 0 0 16px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

.q-blog-dek {
    font-size: clamp(17px, 2.2vw, 21px);
    line-height: 1.5;
    max-width: 640px;
    margin: 0 0 16px;
    color: #f2f4f8;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.q-blog-byline {
    font-size: 14px;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.q-blog-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 24px 72px;
    font-size: 18px;
    line-height: 1.75;
    color: #2a3550;
}

.q-blog-body p { margin: 0 0 24px; }

.q-blog-body h2 {
    font-size: clamp(26px, 3.4vw, 34px);
    margin: 56px 0 8px;
    padding-top: 24px;
    border-top: 1px solid var(--q-border);
    letter-spacing: -0.02em;
}

.q-dropcap::first-letter {
    float: left;
    font-size: 74px;
    line-height: 0.82;
    font-weight: 700;
    padding: 6px 12px 0 0;
    color: var(--q-primary);
}

.q-pullquote {
    font-size: clamp(22px, 3vw, 27px);
    line-height: 1.4;
    font-weight: 600;
    color: var(--q-navy);
    border-left: 3px solid var(--q-primary);
    padding: 4px 0 4px 24px;
    margin: 40px 0 !important;
    letter-spacing: -0.01em;
}

/* Figures break out wider than the text column */
.q-fig {
    margin: 36px 0;
    width: calc(100% + 120px);
    margin-left: -60px;
}

.q-fig img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

.q-fig-wide {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: 1200px;
}

.q-fig-wide img { border-radius: 0; }

.q-fig figcaption,
.q-fig-duo-cap {
    font-size: 14px;
    line-height: 1.5;
    color: var(--q-muted);
    margin-top: 10px;
    padding: 0 8px;
    font-style: italic;
}

.q-fig-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: calc(100% + 120px);
    margin: 36px 0 0 -60px;
}

.q-fig-duo .q-fig { margin: 0; width: 100%; }

.q-fig-duo-cap { margin: 10px 0 36px -60px; width: calc(100% + 120px); }

.q-blog-notes {
    background: var(--q-light);
    border: 1px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 28px 32px;
    margin: 48px 0 32px;
}

.q-blog-notes h3 { margin: 0 0 16px; font-size: 20px; }
.q-blog-notes ul { margin: 0; padding-left: 20px; }
.q-blog-notes li { margin-bottom: 12px; font-size: 16px; line-height: 1.6; }

.q-blog-cta {
    border-top: 1px solid var(--q-border);
    padding-top: 28px;
    font-size: 16px;
    color: var(--q-secondary);
}

@media (max-width: 820px) {
    .q-fig, .q-fig-duo { width: 100%; margin-left: 0; }
    .q-fig-duo { margin-top: 28px; }
    .q-fig-duo-cap { width: 100%; margin-left: 0; }
    .q-fig-wide { width: 100%; margin-left: 0; }
    .q-fig-wide img { border-radius: 10px; }
    .q-blog-body { font-size: 17px; padding: 40px 20px 56px; }
}

@media (max-width: 540px) {
    .q-fig-duo { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.q-faq details {
    background: var(--q-white);
    border: 1px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 16px 20px;
    margin-bottom: 10px;
}

.q-faq summary { font-weight: 600; cursor: pointer; font-size: 15.5px; }
.q-faq details p { margin: 10px 0 0; color: var(--q-secondary); }

/* ===== FOOTER ===== */
#qtg-footer {
    background: var(--q-light);
    border-top: 1px solid var(--q-border);
    color: var(--q-secondary);
    padding: 48px 32px 24px;
    margin-top: 48px;
}

.qf-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.qf-word { font-size: 17px; font-weight: 700; color: var(--q-body); }
.qf-brand p { font-size: 13.5px; line-height: 1.6; margin-top: 10px; max-width: 380px; color: var(--q-muted); }

.qf-head {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--q-muted);
    margin-bottom: 12px;
}

.qf-col a { display: block; color: var(--q-secondary); font-size: 14.5px; margin-bottom: 9px; text-decoration: none !important; }
.qf-col a:hover { color: var(--q-primary); }

.qf-legal {
    max-width: 1080px;
    margin: 36px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--q-border);
}

.qf-legal p { font-size: 12.5px; color: var(--q-muted); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    #qtg-nav { padding: 12px 20px; }
    .q-hamburger { display: block; margin-left: auto; }
    .q-cta { display: none; }

    .q-links {
        display: none;
        position: fixed;
        inset: 55px 0 0 0;
        background: var(--q-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        gap: 18px;
        z-index: 899;
        overflow-y: auto;
    }

    .q-links.mobile-open { display: flex; }
    .q-links > li > a { font-size: 17px; }

    .q-drop {
        position: static;
        transform: none;
        opacity: 1;
        visibility: hidden;
        display: none;
        width: 100%;
        padding-top: 8px;
        margin-top: 0;
        transition: none;
    }

    .q-drop-panel { border: 0; box-shadow: none; padding: 0 0 0 8px; }

    .mobile-open-drop .q-drop { display: block; visibility: visible; }

    .q-section, .q-hero, .q-article { padding-left: 20px; padding-right: 20px; }
    .q-grid-3, .q-grid-2 { grid-template-columns: 1fr; }
    .q-form-row { grid-template-columns: 1fr 1fr; }
    .q-trip-body { grid-template-columns: 1fr; }
    .qf-inner { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 540px) {
    .q-form-row { grid-template-columns: 1fr; }
}
