        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #2D8B4E; --primary-hover: #1A6B35; --primary-light: #E8F5EC;
            --text-dark: #1A1A1A; --text-gray: #666666; --text-light: #888888;
            --bg-white: #FFFFFF; --bg-light: #FAFAFA; --border: #E8E8E8;
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        html, body { height: 100%; height: 100dvh; font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg-light); color: var(--text-dark); overflow: hidden; }
        .progress-bar { position: fixed; top: 0; left: 50%; transform: translateX(-50%); max-width: 460px; width: 0%; height: 4px; background: var(--primary); transition: width 0.6s cubic-bezier(.22,1,.36,1); z-index: 1000; border-radius: 2px; }
        .nav-controls { position: fixed; bottom: 24px; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); left: 50%; transform: translateX(-50%); max-width: 412px; width: calc(100% - 48px); display: flex; justify-content: center; align-items: center; gap: 12px; z-index: 100; }
        .nav-next { width: 48px; height: 48px; border-radius: 12px; border: none; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; flex-shrink: 0; }
        .nav-next:hover { background: var(--primary-hover); }
        .nav-next svg { stroke: white; }
        .btn-confirmar { display: none; align-items: center; gap: 8px; background: var(--primary); color: white; border: none; padding: 12px 24px; font-size: 15px; font-weight: 600; border-radius: 12px; cursor: pointer; font-family: inherit; transition: all 0.2s; }
        .btn-confirmar:hover { background: var(--primary-hover); transform: translateY(-1px); }
        .btn-confirmar svg { width: 16px; height: 16px; }
        .nav-btn { width: 48px; height: 48px; border: none; border-radius: 12px; background: var(--primary); color: white; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; -webkit-tap-highlight-color: transparent; }
        .nav-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }
        .nav-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; }
        .nav-btn.nav-back { background: var(--bg-white); border: 1px solid var(--border); color: var(--text-light); }
        .nav-btn.nav-back:hover { border-color: var(--primary); color: var(--primary); }
        .form-container { height: 100vh; height: 100dvh; width: 100%; max-width: 460px; margin: 0 auto; position: relative; overflow: hidden; background: var(--bg-white); border-radius: 0; }
        .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 0; opacity: 0; pointer-events: none; overflow-y: auto; visibility: hidden; -webkit-overflow-scrolling: touch; }
        .slide.active { opacity: 1; pointer-events: all; visibility: visible; animation: slideIn 0.6s cubic-bezier(.22,1,.36,1) forwards; }
        .slide.exit-up { visibility: visible; animation: slideOut 0.45s cubic-bezier(.55,0,1,.45) forwards; }
        @keyframes slideIn { from { opacity: 0; transform: translateY(40px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
        @keyframes slideOut { from { opacity: 1; transform: translateY(0) scale(1); } to { opacity: 0; transform: translateY(-30px) scale(.98); } }
        .slide-content { max-width: 460px; width: 100%; padding: 16px 24px; padding-bottom: 110px; margin: 0 auto; }
        .welcome-screen { text-align: center; display: flex; flex-direction: column; width: 100% !important; min-width: 100%; height: 100vh; height: 100dvh; }
        .welcome-hero { width: 100%; height: 50%; min-height: 200px; max-height: 420px; position: relative; overflow: hidden; border-radius: 0; flex-shrink: 0; }
        .welcome-hero img { width: 100%; height: 100%; object-fit: cover; }
        .welcome-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.5) 100%); }
        .welcome-badge { position: absolute; bottom: 20px; left: 24px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.93); padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--primary); }
        .welcome-badge svg { width: 16px; height: 16px; }
        .welcome-content { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 20px; gap: 16px; overflow-y: auto; }
        .welcome-screen h1 { font-size: clamp(24px, 6vw, 32px); font-weight: 600; line-height: 1.25; color: var(--text-dark); }
        .welcome-screen p { font-size: clamp(14px, 3.5vw, 18px); color: var(--text-gray); line-height: 1.6; max-width: 400px; }
        .welcome-hint { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-light); font-weight: 500; }
        .welcome-hint svg { width: 14px; height: 14px; }
        .btn-start { display: inline-flex; align-items: center; gap: 10px; background: var(--primary); color: white; border: none; padding: 14px 28px; font-size: 16px; font-weight: 600; border-radius: 12px; cursor: pointer; transition: all 0.35s cubic-bezier(.22,1,.36,1); box-shadow: 0 4px 15px rgba(45,139,78,0.35); -webkit-tap-highlight-color: transparent; }
        .btn-start:hover { background: var(--primary-hover); transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 28px rgba(45,139,78,0.45); }
        .btn-start:active { transform: translateY(0) scale(.98); }
        .btn-start:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }
        .step-indicator { font-size: 11px; color: var(--primary); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
        .step-progress { width: 100%; height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 24px; overflow: hidden; }
        .step-progress-fill { height: 100%; background: var(--primary); border-radius: 2px; transition: width 0.5s ease; }
        .question-number { display: none; }
        .question-title { font-size: clamp(20px, 5vw, 26px); font-weight: 600; margin-bottom: 8px; line-height: 1.3; color: var(--text-dark); }
        .question-subtitle { font-size: clamp(14px, 3.5vw, 17px); color: var(--text-gray); margin-bottom: 20px; font-weight: 400; }
        .choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
        .choice-grid.two-cols { grid-template-columns: repeat(2, 1fr); }
        .choice-grid.three-cols { grid-template-columns: repeat(3, 1fr); }
        .choice-grid.four-cols { grid-template-columns: repeat(2, 1fr); }
        .choice-card { border: 1px solid var(--border); border-radius: 16px; padding: 0; cursor: pointer; transition: all 0.35s cubic-bezier(.22,1,.36,1); display: flex; flex-direction: column; align-items: flex-start; text-align: left; background: var(--bg-white); position: relative; overflow: hidden; -webkit-tap-highlight-color: transparent; }
        .choice-card:hover { border-color: var(--primary); transform: none; box-shadow: 0 0 0 2px var(--primary); }
        .choice-card:active { transform: translateY(0) scale(.98); }
        .choice-card.selected { border: 2.5px solid var(--primary); }
        .choice-card.selected::after { content: '\2713'; position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; z-index: 2; }
        .choice-icon { width: 100%; height: 165px; display: flex; align-items: center; justify-content: center; font-size: 40px; overflow: hidden; }
        .choice-icon img { width: 100%; height: 100%; object-fit: cover; }
        .choice-card-text { padding: 12px 14px; }
        .choice-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text-dark); }
        .choice-card p { font-size: 14px; color: var(--text-gray); line-height: 1.68; }
        .choice-key { display: none; }
        .route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
        .route-card { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; cursor: pointer; transition: all 0.35s cubic-bezier(.22,1,.36,1); background: var(--bg-white); position: relative; -webkit-tap-highlight-color: transparent; }
        .route-card:hover { border-color: var(--primary); transform: none; box-shadow: 0 0 0 2px var(--primary); }
        .route-card:active { transform: translateY(0) scale(.98); }
        .route-card.selected { border: 2.5px solid var(--primary); }
        .route-card.selected::after { content: '\2713'; position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; z-index: 2; }
        .route-image { width: 100%; aspect-ratio: 1; overflow: hidden; background: #ffffff; }
        .badge-popular { position: absolute; top: 10px; left: 10px; background: var(--primary); color: white; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; z-index: 2; letter-spacing: 0.3px; box-shadow: 0 2px 6px rgba(45,139,78,0.35); }
        .route-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform 0.3s; background: #fff; }
        .route-card:hover .route-image img { transform: none; }
        .route-info { padding: 10px 14px; }
        .route-info h3 { font-size: 15px; font-weight: 600; margin-bottom: 2px; color: var(--text-dark); }
        .route-info p { font-size: 12px; color: var(--text-light); }
        .calendar-container { position: relative; display: flex; align-items: flex-start; gap: 0; }
        .calendar-wrapper { flex: 1; min-width: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--bg-white); user-select: none; }
        .calendar-header { display: flex; align-items: center; justify-content: center; padding: 14px 16px; background: var(--bg-white); color: var(--text-dark); }
        .cal-nav { width: 36px; height: 36px; border: none; background: var(--primary-light); color: var(--primary); border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; flex-shrink: 0; }
        .cal-nav:hover { background: #d4edd9; }
        .cal-nav-global { position: absolute; top: 14px; z-index: 5; }
        .cal-nav-prev { left: -18px; }
        .cal-nav-next { right: -18px; }
        .calendar-month-label { font-size: 16px; font-weight: 600; text-transform: capitalize; }
        .calendar-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); padding: 8px 8px 2px; gap: 0; }
        .calendar-weekdays span { text-align: center; font-size: 10px; font-weight: 600; color: var(--text-light); text-transform: uppercase; padding: 4px 0; }
        .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); padding: 2px 8px 10px; gap: 2px; }
        .calendar-day { display: flex; align-items: center; justify-content: center; width: 100%; height: 36px; border: none; background: none; font-size: 13px; font-weight: 500; color: var(--text-dark); border-radius: 50%; cursor: pointer; transition: all 0.15s; font-family: inherit; }
        .calendar-day:hover:not(.empty):not(.past):not(.blocked) { background: var(--primary-light); color: var(--primary); }
        .calendar-day.today { border: 2px solid var(--primary); font-weight: 700; }
        .calendar-day.selected { background: var(--primary); color: white; font-weight: 700; border-radius: 50%; z-index: 2; }
        .calendar-day.range-start { background: var(--primary); color: white; font-weight: 700; border-radius: 50% 0 0 50%; }
        .calendar-day.range-mid { background: var(--primary-light); color: var(--primary); font-weight: 500; border-radius: 0; }
        .calendar-day.range-end { background: var(--primary); color: white; font-weight: 600; border-radius: 0 50% 50% 0; }
        .calendar-day.past, .calendar-day.blocked { color: #ccc; cursor: not-allowed; text-decoration: line-through; }
        .calendar-day.empty { cursor: default; }
        .calendar-selected-display { margin-top: 16px; padding: 10px 16px; background: var(--primary-light); border: 1px solid var(--primary); border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--primary); display: none; align-items: center; gap: 8px; }
        .calendar-selected-display.visible { display: inline-flex; }
        .text-area { width: 100%; min-height: 120px; padding: 16px 18px; font-size: 16px; border: 1px solid var(--border); border-radius: 12px; outline: none; font-family: inherit; resize: vertical; transition: border-color 0.3s, box-shadow 0.3s; line-height: 1.6; color: var(--text-dark); background: var(--bg-white); }
        .text-area:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,139,78,0.1); }
        .transfers-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; max-width: 520px; }
        .transfer-row { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 16px; cursor: pointer; transition: all 0.25s ease; background: var(--bg-white); }
        .transfer-row:hover { border-color: var(--primary); background: var(--primary-light); }
        .transfer-row.selected { border: 2px solid var(--primary); background: var(--primary-light); }
        .transfer-cb { width: 20px; height: 20px; accent-color: var(--primary); margin-top: 2px; flex-shrink: 0; cursor: pointer; }
        .transfer-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
        .transfer-cat { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 2px 8px; border-radius: 4px; width: fit-content; }
        .transfer-cat.ida { background: #E3F2FD; color: #1565C0; }
        .transfer-cat.vuelta { background: #FFF3E0; color: #E65100; }
        .transfer-label { font-size: 14px; font-weight: 500; color: var(--text-dark); }
        .transfer-price { font-size: 13px; color: var(--primary); font-weight: 600; }
        .input-label { font-size: 12px; font-weight: 600; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; letter-spacing: 0.5px; }
        .text-input { width: 100%; padding: 14px 18px; font-size: 18px; border: 1px solid var(--border); border-radius: 12px; outline: none; font-family: inherit; transition: border-color 0.3s; background: var(--bg-white); color: var(--text-dark); height: 52px; }
        .text-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,139,78,0.1); }
        .text-input::placeholder { color: #bbb; }
        .phone-input-wrapper { position: relative; display: flex; align-items: center; gap: 0; max-width: 400px; border: 1px solid var(--border); border-radius: 12px; overflow: visible; background: var(--bg-white); height: 52px; transition: border-color 0.3s, box-shadow 0.3s; }
        .phone-input-wrapper:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,139,78,0.1); }
        .phone-country-select { display: flex; align-items: center; gap: 6px; padding: 0 12px; border-right: 1px solid var(--border); cursor: pointer; transition: background 0.2s; white-space: nowrap; background: var(--bg-light); height: 100%; border-radius: 12px 0 0 12px; }
        .phone-country-select:hover { background: var(--primary-light); }
        .phone-flag { font-size: 22px; line-height: 1; display: inline-flex; align-items: center; }
        .phone-flag img { width: 24px; height: 18px; object-fit: cover; border-radius: 2px; vertical-align: middle; }
        .phone-code { font-size: 16px; font-weight: 500; color: var(--text-dark); }
        .phone-number-input { flex: 1; padding: 0 16px; font-size: 18px; border: none; outline: none; font-family: inherit; background: transparent; color: var(--text-dark); height: 100%; border-radius: 0 12px 12px 0; }
        .phone-number-input::placeholder { color: #ccc; }
        .country-dropdown { position: absolute; top: 100%; left: 0; width: 320px; max-height: 0; overflow: hidden; background: white; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); z-index: 200; transition: max-height 0.3s ease, opacity 0.3s; opacity: 0; margin-top: 8px; }
        .country-dropdown.open { max-height: 380px; opacity: 1; overflow: hidden; display: flex; flex-direction: column; }
        .country-search { width: 100%; padding: 12px 16px; border: none; border-bottom: 1px solid var(--border); font-size: 16px; font-family: inherit; outline: none; color: var(--text-dark); }
        .country-search::placeholder { color: #bbb; }
        .country-list { max-height: 280px; overflow-y: auto; }
        .country-option { display: flex; align-items: center; gap: 10px; padding: 10px 16px; cursor: pointer; transition: background 0.15s; font-size: 14px; }
        .country-option:hover { background: #F1F8E9; }
        .country-option .co-flag { font-size: 20px; display: inline-flex; align-items: center; }
        .country-option .co-flag img { width: 24px; height: 18px; object-fit: cover; border-radius: 2px; }
        .country-option .co-name { flex: 1; color: var(--text-dark); }
        .country-option .co-code { color: var(--text-gray); font-weight: 500; }
        .country-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .country-card { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-white); cursor: pointer; transition: all 0.2s; -webkit-tap-highlight-color: transparent; }
        .country-card:active, .country-card.selected { border-color: var(--primary); background: var(--primary-light); }
        .country-card-flag { font-size: 26px; line-height: 1; }
        .country-card-name { font-size: 14px; font-weight: 500; color: var(--text-dark); }
        .room-counters { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
        .room-counter-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-white); transition: all 0.3s; }
        .room-counter-row.has-value { border-color: var(--primary); background: var(--primary-light); }
        .room-label { flex: 1; }
        .room-label h4 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
        .room-label p { font-size: 13px; color: var(--text-gray); }
        .counter-controls { display: flex; align-items: center; gap: 14px; }
        .counter-btn { width: 36px; height: 36px; border: 1.5px solid var(--border); border-radius: 50%; background: var(--bg-white); color: var(--text-dark); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; font-weight: 400; line-height: 1; }
        .counter-btn:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
        .counter-btn:disabled { opacity: 0.3; cursor: not-allowed; }
        .room-counter-row.has-value .counter-btn { border-color: var(--primary); color: var(--primary); }
        .counter-value { font-size: 20px; font-weight: 600; min-width: 28px; text-align: center; color: var(--text-dark); }
        .pet-info-banner { display: flex; align-items: center; gap: 10px; background: #FFF3E0; border: 1px solid #FFB74D; border-radius: 16px; padding: 14px 18px; margin-bottom: 20px; font-size: 14px; color: #E65100; line-height: 1.4; }
        .pet-info-icon { font-size: 22px; flex-shrink: 0; }
        .pet-summary { display: flex; align-items: center; gap: 10px; background: var(--primary-light); border: 2px solid var(--primary); border-radius: 16px; padding: 14px 18px; margin-bottom: 16px; font-size: 16px; font-weight: 600; color: var(--primary); }
        .pet-summary-icon { font-size: 24px; }
        .btn-ok { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: white; border: none; padding: 14px 28px; font-size: 15px; font-weight: 600; border-radius: 12px; cursor: pointer; transition: all 0.3s; margin-top: 8px; box-shadow: 0 2px 8px rgba(45,139,78,0.2); }
        .btn-ok:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(45,139,78,0.3); }
        .btn-ok:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }
        .btn-ok-hint { font-size: 12px; color: var(--text-light); margin-left: 10px; }
        .accom-overlay-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
        .accom-overlay-card { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; height: 220px; min-height: 220px; border: 1px solid var(--border); transition: all 0.35s cubic-bezier(.22,1,.36,1); }
        .accom-overlay-card img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform 0.4s; }
        .accom-overlay-card:hover img { transform: none; }
        .accom-overlay-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%); pointer-events: none; }
        .accom-overlay-card .accom-label { position: absolute; bottom: 16px; left: 20px; color: white; font-size: 17px; font-weight: 600; z-index: 2; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
        .accom-overlay-card:hover { transform: none; border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary); }
        .accom-overlay-card.selected { border: 2.5px solid var(--primary); }
        .accom-overlay-card.selected::before { content: '\2713'; position: absolute; top: 12px; right: 12px; width: 28px; height: 28px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; z-index: 3; }
        .meal-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
        .meal-card { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border: 1px solid var(--border); border-radius: 16px; cursor: pointer; background: var(--bg-white); transition: all 0.3s; }
        .meal-card:hover { border-color: var(--primary); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(45,139,78,0.08); }
        .meal-card.selected { border: 2.5px solid var(--primary); background: var(--primary-light); }
        .meal-card.selected::after { display: none; }
        .meal-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
        .meal-icon.no-meal { background: #FEE2E2; }
        .meal-icon.has-meal { background: #FFF8E1; }
        .meal-card h3 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
        .meal-card p { font-size: 13px; color: var(--text-gray); }
        .terms-box { display: flex; flex-direction: column; gap: 16px; margin-bottom: 8px; }
        .checkbox-wrapper { display: flex; align-items: flex-start; gap: 14px; cursor: pointer; padding: 16px 20px; border: 2px solid #C0C0C0; border-radius: 16px; transition: all 0.2s; background: var(--bg-white); }
        .checkbox-wrapper:hover { border-color: var(--primary); background: var(--primary-light); }
        .checkbox-wrapper input[type="checkbox"] { display: none; }
        .checkmark { width: 26px; height: 26px; min-width: 26px; border: 2.5px solid #999; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; margin-top: 1px; }
        .checkbox-wrapper input[type="checkbox"]:checked ~ .checkmark { background: var(--primary); border-color: var(--primary); }
        .checkbox-wrapper input[type="checkbox"]:checked ~ .checkmark::after { content: '\2713'; color: white; font-size: 15px; font-weight: 700; }
        .checkbox-wrapper input[type="checkbox"]:checked ~ .checkbox-label { color: var(--text-dark); }
        .checkbox-label { font-size: 15px; line-height: 1.5; color: #444; }
        .checkbox-label a { color: var(--primary); text-decoration: underline; font-weight: 500; }
        .checkbox-label a:hover { color: var(--primary-hover); }
        .ok-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
        .thankyou-screen { text-align: center; }
        .thankyou-icon { margin-bottom: 24px; }
        .thankyou-icon img { width: 200px; height: auto; }
        .thankyou-screen h1 { font-size: clamp(32px, 8vw, 42px); font-weight: 700; margin-bottom: 16px; }
        .thankyou-screen p { font-size: clamp(15px, 3.5vw, 18px); color: var(--text-gray); line-height: 1.6; max-width: 500px; margin: 0 auto; }
        .required { color: var(--primary); }
        .validation-msg { color: #e74c3c; font-size: 13px; margin-top: 6px; display: none; }
        .validation-msg.show { display: block; }
        @keyframes shake { 0%, 100% { transform: translateX(0); } 20% { transform: translateX(-8px); } 40% { transform: translateX(8px); } 60% { transform: translateX(-4px); } 80% { transform: translateX(4px); } }
        .shake { animation: shake 0.4s ease; }
        .loading-screen { text-align: center; padding: 60px 20px; }
        .loading-spinner { width: 48px; height: 48px; border: 4px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 20px; }
        @keyframes spin { to { transform: rotate(360deg); } }
        .group-date-card { border: 1px solid var(--border); border-radius: 16px; padding: 18px 22px; cursor: pointer; transition: all 0.3s; background: var(--bg-white); margin-bottom: 10px; }
        .group-date-card:hover { border-color: var(--primary); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(45,139,78,0.08); }
        .group-date-card.selected { border: 2.5px solid var(--primary); background: var(--primary-light); }
        .group-date-card h4 { font-size: 16px; font-weight: 600; color: var(--text-dark); }
        .group-date-card p { font-size: 13px; color: var(--text-gray); margin-top: 4px; }
        .bike-grid { display: flex; flex-direction: column; gap: 12px; }
        .bike-card { border: 1px solid var(--border); border-radius: 16px; padding: 18px 22px; cursor: pointer; transition: all 0.3s; background: var(--bg-white); display: flex; align-items: center; gap: 16px; position: relative; }
        .bike-card:hover { border-color: var(--primary); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(45,139,78,0.08); }
        .bike-card.selected { border: 2.5px solid var(--primary); background: var(--primary-light); }
        .bike-card.selected::after { content: '\2713'; position: absolute; top: 12px; right: 12px; width: 24px; height: 24px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
        .bike-card .bike-icon { font-size: 32px; }
        .bike-card h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); }
        .bike-card p { font-size: 13px; color: var(--text-gray); }
        /* ─── Responsive ─────────────────────────────────── */
        @media (max-width: 480px) {
            .slide-content { padding: 24px 18px; padding-bottom: 110px; }
            .welcome-content { padding: 18px 16px; gap: 14px; }
            .text-input { max-width: 100%; font-size: 16px; }
            .phone-input-wrapper { max-width: 100%; }
            .country-dropdown { width: 100%; }
            .nav-controls { bottom: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); width: calc(100% - 32px); }
            .nav-btn { width: 44px; height: 44px; }
            .counter-btn { width: 34px; height: 34px; font-size: 16px; }
            .counter-value { font-size: 18px; }
            .checkbox-wrapper { padding: 14px 16px; }
            .checkbox-label { font-size: 14px; color: #333; }
            .transfer-row { padding: 12px 14px; }
            .transfer-label { font-size: 13px; }
            .choice-icon { height: 180px; }
            .choice-card h3 { font-size: 14px; }
            .choice-card p { font-size: 12px; }
            .choice-card-text { padding: 10px 12px; }
            .choice-grid { gap: 10px; }
            .accom-overlay-card { height: 200px; }
            .accom-overlay-card .accom-label { font-size: 16px; bottom: 14px; left: 16px; }
            .bike-card { padding: 14px 16px; }
            .group-date-card { padding: 14px 16px; }
            .route-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .route-image { aspect-ratio: 1; height: auto; }
            .route-info { padding: 8px 10px; }
            .route-info h3 { font-size: 14px; }
            .route-info p { font-size: 11px; }
            .btn-start { padding: 14px 24px; font-size: 15px; }
            .btn-ok { padding: 12px 22px; font-size: 14px; }
            .calendar-day { height: 36px; font-size: 13px; }
            .step-indicator { font-size: 10px; letter-spacing: 1.5px; margin-bottom: 10px; }
            .step-progress { margin-bottom: 18px; }
            .room-counter-row { padding: 14px 16px; }
            .meal-card { padding: 14px 16px; gap: 12px; }
            .meal-icon { width: 42px; height: 42px; font-size: 20px; }
        }
        @media (max-width: 360px) {
            .slide-content { padding: 20px 14px; padding-bottom: 100px; }
            .welcome-content { padding: 14px 12px; gap: 12px; }
            .btn-start { padding: 12px 20px; font-size: 14px; }
            .room-counter-row { padding: 12px 14px; }
            .choice-icon { height: 150px; }
            .choice-grid { gap: 8px; }
            .accom-overlay-card { height: 180px; }
            .route-grid { gap: 8px; }
            .route-image { aspect-ratio: 1; height: auto; }
            .nav-controls { width: calc(100% - 24px); }
        }
        @media (max-height: 600px) {
            .welcome-hero { max-height: 200px; }
            .welcome-content { gap: 10px; padding: 12px; }
            .slide-content { padding-top: 20px; }
        }

        /* Travel type now uses standard .choice-card / .choice-grid */

        /* ─── Scroll indicator ─────────────────────────── */
        .slide-content { position: relative; }
        .scroll-hint {
            position: sticky;
            bottom: 85px;
            left: 0;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            pointer-events: none;
            z-index: 20;
            transition: opacity 0.3s;
        }
        .scroll-hint-fade {
            width: 100%;
            height: 50px;
            background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, transparent 100%);
        }
        .scroll-hint-arrow {
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: bounceDown 1.5s ease infinite;
            box-shadow: 0 2px 8px rgba(45,139,78,0.3);
            margin-top: -8px;
        }
        .scroll-hint-arrow svg { width: 18px; height: 18px; }
        @keyframes bounceDown {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(6px); }
        }
        .slide.at-bottom .scroll-hint { opacity: 0; }

        /* ─── Package badges (mobile) ─────────────────── */
        .pkg-meta { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
        .pkg-badge { font-size: 11px; color: #888; font-weight: 500; background: #F5F5F3; padding: 2px 6px; border-radius: 4px; }

        /* ─── Logo bar (mobile + desktop) ─────────────────── */
        #dt-logo-bar {
            display: flex; align-items: center; justify-content: space-between;
            padding: 10px 24px; background: #fff;
            border-bottom: 1px solid #e8e8e8;
            flex-shrink: 0;
        }
        #dt-logo-bar-img { height: 36px; width: auto; max-width: 55%; display: block; object-fit: contain; margin-left: 25%; }
        #lang-picker-mount { display: flex; align-items: center; margin-right: 25%; }
        #mobile-logo-bar { display: none; }

        /* ─── Language picker ─────────────────── */
        .lang-picker { position: relative; }
        .lang-picker-btn {
            display: flex; align-items: center; gap: 6px;
            background: #f5f5f3; border: 1px solid #e0e0e0; border-radius: 20px;
            padding: 6px 12px; cursor: pointer; font-size: 13px; font-weight: 500;
            color: #333; white-space: nowrap;
        }
        .lang-picker-btn:hover { background: #ececea; }
        .lang-flag-img { width: 20px; height: 15px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }
        .lang-caret { color: #666; transition: transform 0.2s; flex-shrink: 0; }
        .lang-picker.open .lang-caret { transform: rotate(180deg); }
        .lang-dropdown {
            display: none; position: absolute; right: 0; top: calc(100% + 6px);
            background: #fff; border: 1px solid #e0e0e0; border-radius: 10px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.12); overflow: hidden; z-index: 999;
            min-width: 140px;
        }
        .lang-picker.open .lang-dropdown { display: block; }
        .lang-option {
            display: flex; align-items: center; gap: 8px;
            width: 100%; padding: 10px 14px; background: none; border: none;
            cursor: pointer; font-size: 13px; color: #333; text-align: left;
        }
        .lang-option:hover { background: #f5f5f3; }
        .lang-option.active { font-weight: 600; color: #2d7a3a; }

        /* ─── Desktop 2-Panel Layout ─────────────────── */

        #dt-wrap { display: none; }

        @media (min-width: 900px) {
            .progress-bar, .nav-controls { display: none !important; }
            .form-container { display: none !important; }
            html, body { overflow: hidden; height: 100dvh; height: 100vh; background: #FAFAF7; margin: 0; padding: 0; }

            /* ── Layout (iframe-ready) ── */
            #dt-wrap {
                display: flex; flex-direction: row;
                height: 100dvh; height: 100vh; width: 100%;
                font-family: 'Montserrat', sans-serif;
                background: #FAFAF7;
            }

            /* ── Left Panel (hidden) ── */
            #dt-left { display: none; }
            #dt-left-bg {
                position: absolute; inset: 0; z-index: 0;
                background-size: cover; background-position: center;
                transform: scale(1.15);
                transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
            }
            #dt-left-overlay {
                position: absolute; inset: 0; z-index: 1;
                background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.65) 100%);
            }
            #dt-left-content {
                position: relative; z-index: 2;
                display: flex; flex-direction: column;
                align-items: center; justify-content: center;
                height: 100%; padding: 32px 28px;
                color: #fff; text-align: center;
            }
            #dt-left-logo { margin-bottom: 0; }
            #dt-left-logo img { width: 90px; height: auto; }
            #dt-left-bottom { text-align: center; }
            #dt-left-title {
                font-size: clamp(24px, 2.5vw, 36px); font-weight: 700; line-height: 1.2;
                margin-bottom: 12px; text-shadow: 0 2px 12px rgba(0,0,0,0.3);
            }
            #dt-left-subtitle {
                font-size: clamp(13px, 1.2vw, 16px); font-weight: 400; opacity: 0.9;
                line-height: 1.5; margin-bottom: 24px;
                text-shadow: 0 1px 4px rgba(0,0,0,0.2);
            }
            #dt-google-badge {
                display: inline-flex; align-items: center; gap: 12px;
                background: rgba(255,255,255,0.15); backdrop-filter: blur(12px);
                padding: 12px 20px; border-radius: 14px;
                border: 1px solid rgba(255,255,255,0.25);
                margin: 0 auto;
            }
            #dt-google-badge .dt-google-icon {
                flex-shrink: 0; line-height: 0;
                filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
            }
            #dt-google-badge .dt-google-icon svg {
                width: 34px; height: 48px;
            }
            #dt-google-stars { display: flex; gap: 2px; font-size: 16px; color: #FBBC04; }
            #dt-google-text { font-size: 13px; font-weight: 500; opacity: 0.9; }

            /* ── Camino Particles ── */
            #dt-particles {
                position: absolute; inset: 0; z-index: 0; pointer-events: none;
                opacity: 0.35;
            }

            /* ── Right Panel (full width) ── */
            #dt-right {
                flex: 1; display: flex; flex-direction: column;
                height: 100%; min-width: 0; background: #FAFAF7;
                position: relative;
            }


            /* ── Logo bar (desktop: moved into dt-right by JS) ── */

            /* ── Breadcrumb strip ── */
            #dt-breadcrumb {
                display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px;
                padding: 10px 32px; background: #d6d6d6;
                border-bottom: 1px solid #c4c4c4; flex-shrink: 0;
                min-height: 0; transition: all 0.3s;
            }
            #dt-breadcrumb:empty { display: none; }
            .dt-crumb {
                display: inline-flex; align-items: center; gap: 6px;
                padding: 5px 14px; border-radius: 20px;
                background: #E8F5EC; color: #2D8B4E;
                font-size: 12px; font-weight: 600; cursor: pointer;
                transition: all 0.2s; font-family: 'Montserrat', sans-serif;
                border: 1px solid transparent;
            }
            .dt-crumb:hover { background: #d4f0db; border-color: #2D8B4E; }
            .dt-crumb-label { color: #666; font-weight: 500; }
            .dt-crumb-sep { color: #ccc; font-size: 10px; }

            /* ── Content area (right panel main area) ── */
            #dt-content {
                flex: 1; overflow-y: auto; display: flex; flex-direction: column;
                align-items: center;
                padding: 28px 60px 24px;
                position: relative; z-index: 1;
            }
            #dt-content::-webkit-scrollbar { width: 5px; }
            #dt-content::-webkit-scrollbar-track { background: transparent; }
            #dt-content::-webkit-scrollbar-thumb { background: #D4D0C8; border-radius: 3px; }
            #dt-content-inner {
                width: 100%; max-width: 900px; margin: 0 auto;
            }
            #dt-step-title {
                font-family: 'Montserrat', sans-serif;
                font-size: clamp(24px, 2.5vw, 32px); font-weight: 700; color: #1A1A1A;
                margin-bottom: 32px; letter-spacing: -0.3px;
                text-align: center; flex-shrink: 0;
            }
            #dt-step-subtitle {
                font-size: 15px; color: #8A8A80; font-weight: 400;
                margin-bottom: 20px; text-align: center; flex-shrink: 0;
            }
            /* ── Animations ── */
            .dt-fade-in { animation: dtFadeIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both; }
            .dt-fade-in > *:nth-child(1) { animation: dtFadeChild 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both; }
            .dt-fade-in > *:nth-child(2) { animation: dtFadeChild 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both; }
            .dt-fade-in > *:nth-child(3) { animation: dtFadeChild 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both; }
            .dt-fade-in > *:nth-child(4) { animation: dtFadeChild 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both; }
            .dt-fade-in > *:nth-child(5) { animation: dtFadeChild 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both; }
            .dt-fade-in > *:nth-child(6) { animation: dtFadeChild 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both; }
            @keyframes dtFadeIn { from { opacity: 0; } to { opacity: 1; } }
            @keyframes dtFadeChild { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

            /* ── Options Grid (2x2) ── */
            .dt-options-grid {
                display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
                width: 100%;
            }
            .dt-options-grid .route-card { width: auto !important; display: flex; flex-direction: column; overflow: hidden; }
            .dt-options-grid .route-card .route-image { flex: 1; min-height: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
            .dt-options-grid .route-card .route-image img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center 30% !important; }
            .dt-options-grid .route-card:hover { box-shadow: 0 0 0 2px #2D8B4E; border-color: #2D8B4E; transform: none; }
            .dt-options-grid .route-card.selected { border-color: #2D8B4E; background: linear-gradient(135deg, #f0faf3, #e8f5ec); box-shadow: 0 2px 8px rgba(45,139,78,0.1); }
            .dt-options-grid .route-info { text-align: center; padding: 8px 12px !important; flex-shrink: 0; }
            .dt-options-grid .route-info h3 { text-align: center; font-size: 14px !important; font-family: 'Montserrat', sans-serif !important; }
            .dt-options-grid .route-info p { font-size: 12px !important; color: #8A8A80 !important; }
            .dt-accom-desktop-grid { grid-template-columns: repeat(3, 1fr) !important; justify-content: center; }
            .dt-accom-desktop-grid.dt-accom-single { grid-template-columns: 1fr !important; max-width: 400px; margin: 0 auto; }
            .dt-accom-desktop-grid.dt-accom-two { grid-template-columns: repeat(2, 1fr) !important; max-width: 700px; margin: 0 auto; }
            .dt-options-grid .accom-overlay-card { aspect-ratio: 4/3; height: auto; min-height: 180px; }
            .dt-options-grid .accom-overlay-card img { width: 100%; height: 100%; object-fit: cover; }
            .dt-options-grid .accom-overlay-card .accom-label { font-size: 20px; bottom: 18px; left: 22px; }
            .dt-options-grid .dt-type-card { display: flex; flex-direction: column; align-items: center; justify-content: center; }
            .dt-pkg-row-1 { grid-template-columns: 1fr !important; max-width: 400px; margin: 0 auto; }
            .dt-pkg-row-2 { grid-template-columns: repeat(2, 1fr) !important; }
            .dt-pkg-row-3 { grid-template-columns: repeat(3, 1fr) !important; }
            .dt-pkg-row-4 { grid-template-columns: repeat(4, 1fr) !important; }

            /* ── Type cards (horizontal row) ── */
            .dt-type-grid {
                display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
                width: 100%;
            }
            .dt-type-card {
                border: 2px solid #EEECE8; border-radius: 16px; padding: 24px 16px;
                text-align: center; cursor: pointer; transition: all 0.3s;
                background: #fff; position: relative;
                display: flex; flex-direction: column; align-items: center; justify-content: center;
                overflow: hidden;
            }
            .dt-type-card:hover { border-color: #2D8B4E; transform: none; box-shadow: 0 0 0 2px #2D8B4E; }
            .dt-type-card.selected { border-color: #2D8B4E; border-width: 3px; background: #fff; }
            .dt-type-card.selected::before { content: ''; position: absolute; inset: 0; background: rgba(45,139,78,0.15); z-index: 1; pointer-events: none; border-radius: 14px; }
            .dt-type-card.selected h3, .dt-type-card.selected p { position: relative; z-index: 2; }
            .dt-type-card.selected img { position: relative; z-index: 0; }
            .dt-type-card.selected::after { content: '\2713'; position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; background: #2D8B4E; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; z-index: 3; }
            .dt-type-card img { width: clamp(100px, 12vw, 180px); height: clamp(100px, 12vw, 180px); object-fit: contain; margin-bottom: 12px; }
            .dt-type-card h3 { font-size: clamp(14px, 1.4vw, 18px); font-weight: 700; color: #1A1A1A; margin-bottom: 4px; font-family: 'Montserrat', sans-serif; white-space: normal; word-wrap: break-word; }
            .dt-type-card p { font-size: 12px; color: #888; line-height: 1.4; }

            /* ── Continue button footer (always visible, never needs scrolling) ── */
            #dt-sticky-footer {
                flex-shrink: 0; background: #FAFAF7;
                border-top: 1px solid #e8e8e8;
            }
            #dt-sticky-footer:empty { display: none; }
            .dt-continue-wrap {
                display: flex; justify-content: center; padding: 14px 0 14px;
                background: transparent;
            }
            .dt-btn {
                padding: 16px 40px; font-size: 16px; font-weight: 700;
                border-radius: 28px; cursor: pointer; transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
                font-family: 'Montserrat', sans-serif; border: none;
                display: inline-flex; align-items: center; gap: 8px;
                letter-spacing: 0.3px;
            }
            .dt-btn-primary {
                background: linear-gradient(160deg, #4DB872 0%, #2D8B4E 50%, #1A6B35 100%);
                color: white; box-shadow: 0 4px 14px rgba(45,139,78,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
            }
            .dt-btn-primary:hover {
                background: linear-gradient(160deg, #5CC882 0%, #349B58 50%, #2D8B4E 100%);
                transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,139,78,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
            }
            .dt-btn-primary:disabled { background: #D4D0C8; cursor: not-allowed; transform: none; box-shadow: none; }
            .dt-btn-submit {
                background: linear-gradient(160deg, #4DB872 0%, #2D8B4E 50%, #1A6B35 100%);
                color: white; padding: 18px 52px; font-size: 17px;
                box-shadow: 0 4px 14px rgba(45,139,78,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
            }
            .dt-btn-submit:hover {
                background: linear-gradient(160deg, #5CC882 0%, #349B58 50%, #2D8B4E 100%);
                transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,139,78,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
            }
            .dt-btn-submit:disabled { background: #D4D0C8; cursor: not-allowed; transform: none; box-shadow: none; }

            /* ── Shared: Horizontal Slider with Arrows ── */
            .dt-slider-wrap { position: relative; }
            .dt-slider-wrap .dt-h-slider { scroll-behavior: smooth; }
            .dt-slider-arr {
                position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
                width: 36px; height: 36px; border-radius: 50%;
                background: rgba(255,255,255,0.95); border: 1px solid #EEECE8;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                display: flex; align-items: center; justify-content: center;
                cursor: pointer; transition: all 0.2s;
                font-size: 16px; color: #333; line-height: 1;
            }
            .dt-slider-arr:hover { background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.15); transform: translateY(-50%) scale(1.05); }
            .dt-slider-arr.hidden { opacity: 0; pointer-events: none; }
            .dt-slider-arr-l { left: -12px; }
            .dt-slider-arr-r { right: -12px; }
            .dt-h-slider {
                display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch; padding-bottom: 6px; gap: 14px;
                scrollbar-width: none;
            }
            .dt-h-slider::-webkit-scrollbar { display: none; }
            .dt-h-slider > * { scroll-snap-align: start; flex-shrink: 0; }

            /* ── Section titles ── */
            .dt-section-title {
                font-family: 'Montserrat', sans-serif;
                font-size: 16px; font-weight: 700; color: #1A1A1A; margin-bottom: 10px;
            }
            .dt-check {
                width: 24px; height: 24px; background: #2D8B4E; color: #fff; border-radius: 50%;
                display: flex; align-items: center; justify-content: center;
                font-size: 12px; font-weight: 700; flex-shrink: 0;
            }
            /* Route grid → horizontal slider with 2 rows */
            .dt-route-grid {
                display: grid !important;
                grid-template-rows: repeat(2, 1fr);
                grid-auto-flow: column;
                grid-auto-columns: calc(33.33% - 10px);
                gap: 12px;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-behavior: smooth;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                flex: 1; min-height: 0;
                padding-right: 40px;
                scrollbar-width: none;
            }
            .dt-route-grid::-webkit-scrollbar { display: none; }
            .dt-route-grid .route-card {
                width: auto !important;
                box-shadow: 0 2px 6px rgba(0,0,0,0.04); border-color: #EEECE8;
                display: flex; flex-direction: column;
                transition: all 0.28s ease;
                scroll-snap-align: start;
                min-width: 0;
            }
            .dt-route-grid .route-card .route-image { flex: 1; min-height: 80px; overflow: hidden; }
            .dt-route-grid .route-card .route-image img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; }
            .dt-route-grid .route-info { padding: 8px 10px !important; flex-shrink: 0; }
            .dt-route-grid .route-info h3 { font-size: 15px !important; font-family: 'Montserrat', sans-serif !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
            .dt-route-grid .route-info p { font-size: 13px !important; color: #8A8A80 !important; }
            .dt-route-grid .route-card:hover { box-shadow: 0 0 0 2px #2D8B4E; border-color: #2D8B4E; transform: none; }
            .dt-route-grid .route-card.selected { border-color: #2D8B4E; background: linear-gradient(135deg, #f0faf3, #e8f5ec); box-shadow: 0 2px 8px rgba(45,139,78,0.1); }
            .dt-route-grid .route-info { text-align: center; }
            .dt-route-grid .route-info h3 { text-align: center; }
            .dt-route-slider-wrap { position: relative; flex: 1; min-height: 0; }
            .dt-route-slider-arrow {
                position: absolute; right: -18px; top: 50%; transform: translateY(-50%); z-index: 5;
            }
            .dt-route-slider-arrow button {
                width: 36px; height: 36px; border-radius: 50%;
                background: #fff; border: 1.5px solid #EEECE8;
                box-shadow: 0 2px 8px rgba(0,0,0,0.10);
                display: flex; align-items: center; justify-content: center;
                cursor: pointer; font-size: 18px; color: #555; transition: all 0.2s;
                font-family: 'Montserrat', sans-serif;
            }
            .dt-route-slider-arrow button:hover { border-color: #2D8B4E; color: #2D8B4E; background: #f0faf3; }
            .dt-show-more-btn {
                display: flex; align-items: center; justify-content: center; gap: 8px;
                width: 100%; padding: 10px; margin-top: 8px;
                border: 1.5px solid #2D8B4E; border-radius: 10px;
                background: #fff; color: #2D8B4E; font-size: 14px; font-weight: 600;
                font-family: 'Montserrat', sans-serif; cursor: pointer;
                transition: all 0.25s;
            }
            .dt-show-more-btn:hover { background: #f0faf3; box-shadow: 0 2px 8px rgba(45,139,78,0.1); }
            /* ── "Ver más rutas" inline carousel ── */
            .dt-more-routes-carousel {
                position: relative; margin-top: 16px;
                animation: dtFadeIn 0.4s ease both;
            }
            .dt-more-routes-carousel .dt-carousel-track {
                display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important;
                gap: 14px; overflow-x: auto !important; overflow-y: hidden !important;
                scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
                padding: 4px 40px 12px 2px; scrollbar-width: none;
            }
            .dt-more-routes-carousel .dt-carousel-track::-webkit-scrollbar { display: none; }
            .dt-more-routes-carousel .dt-carousel-track .route-card {
                flex: 0 0 230px !important; min-width: 230px !important; max-width: 230px !important;
                scroll-snap-align: start; display: flex !important; flex-direction: column !important;
                aspect-ratio: auto !important; width: 230px !important;
            }
            .dt-more-routes-carousel .dt-carousel-track .route-card .route-image {
                height: 150px !important; min-height: 150px; flex-shrink: 0;
            }
            .dt-more-routes-carousel .dt-carousel-track .route-card .route-image img {
                width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important;
            }
            .dt-more-routes-carousel .dt-carousel-track .route-info {
                padding: 10px 12px !important; flex-shrink: 0;
            }
            .dt-carousel-arrow {
                position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
                width: 40px; height: 40px; border-radius: 50%;
                background: rgba(255,255,255,0.95); border: 1.5px solid #EEECE8;
                box-shadow: 0 2px 10px rgba(0,0,0,0.12);
                display: flex; align-items: center; justify-content: center;
                cursor: pointer; font-size: 20px; color: #333; transition: all 0.2s;
            }
            .dt-carousel-arrow:hover { border-color: #2D8B4E; color: #2D8B4E; background: #f0faf3; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
            .dt-carousel-arrow-l { left: -6px; }
            .dt-carousel-arrow-r { right: -6px; }
            .dt-more-routes-label {
                font-size: 15px; font-weight: 700; color: #1A1A1A; margin-bottom: 10px;
                font-family: 'Montserrat', sans-serif;
            }
            /* Package grid (Step 1 sub-selection) → paginated 3×2 grid */
            .dt-pkg-select-grid {
                display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 16px;
                overflow: visible !important;
                position: relative;
            }
            .dt-pkg-select-grid .route-card {
                width: auto !important; border-color: #EEECE8; box-shadow: 0 2px 6px rgba(0,0,0,0.04);
                display: flex; flex-direction: column; aspect-ratio: 4/3;
                transition: all 0.28s ease; overflow: hidden;
            }
            .dt-pkg-select-grid .route-card.dt-pkg-hidden { display: none; }
            .dt-pkg-select-grid .route-card:hover { box-shadow: 0 0 0 2px #2D8B4E; border-color: #2D8B4E; transform: none; }
            .dt-pkg-select-grid .route-card.selected { border-color: #2D8B4E; background: linear-gradient(135deg, #f0faf3, #e8f5ec); box-shadow: 0 2px 8px rgba(45,139,78,0.1); }
            .dt-pkg-select-grid .route-card .route-image { flex: 1; min-height: 0; overflow: hidden; }
            .dt-pkg-select-grid .route-card .route-image img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center 30% !important; }
            .dt-pkg-select-grid .route-info { padding: 8px 10px !important; flex-shrink: 0; }
            .dt-pkg-select-grid .route-info h3 { font-size: 13px !important; font-weight: 600 !important; line-height: 1.3 !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
            .dt-pkg-select-grid .route-info p { font-size: 14px !important; }
            .dt-pkg-select-grid .pkg-meta { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
            .dt-pkg-select-grid .pkg-badge {
                display: inline-flex; align-items: center; gap: 3px;
                font-size: 11px; color: #fff; font-weight: 600;
                background: var(--primary); padding: 2px 8px; border-radius: 6px;
            }
            .pkg-overlay-tags {
                position: absolute; top: 8px; left: 8px; z-index: 2;
                display: flex; flex-wrap: wrap; gap: 4px;
            }
            .pkg-overlay-tag {
                font-size: 10px; font-weight: 600; color: #fff;
                background: rgba(0,0,0,0.55); padding: 3px 8px; border-radius: 6px;
                backdrop-filter: blur(4px);
            }
            /* Slide-out: cards exit to the left */
            .dt-pkg-select-grid.dt-slide-out .route-card:not(.dt-pkg-hidden) {
                opacity: 0 !important; transform: translateX(-24px) !important;
            }
            /* Slide-in: cards enter from the right */
            .dt-pkg-select-grid.dt-slide-in .route-card:not(.dt-pkg-hidden) {
                animation: dtPkgSlideIn 0.32s ease-out forwards;
            }
            /* Route grid carousel animations */
            .dt-route-grid.dt-slide-out .route-card:not(.dt-hidden-route) {
                opacity: 0 !important; transform: translateX(-24px) !important;
            }
            .dt-route-grid.dt-slide-in .route-card:not(.dt-hidden-route) {
                animation: dtPkgSlideIn 0.32s ease-out forwards;
            }
            @keyframes dtPkgSlideIn {
                from { opacity: 0; transform: translateX(24px); }
                to { opacity: 1; transform: translateX(0); }
            }
            /* Arrow button positioned on the right edge, vertically centered */
            .dt-pkg-arrow {
                position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
                z-index: 5;
            }
            .dt-pkg-arrow-btn {
                width: 36px; height: 36px; border-radius: 50%;
                background: #fff; border: 1.5px solid #EEECE8;
                box-shadow: 0 2px 8px rgba(0,0,0,0.10);
                display: flex; align-items: center; justify-content: center;
                cursor: pointer; font-size: 18px; color: #555; transition: all 0.2s;
                font-family: 'Montserrat', sans-serif;
            }
            .dt-pkg-arrow-btn:hover { border-color: #2D8B4E; color: #2D8B4E; background: #f0faf3; box-shadow: 0 4px 14px rgba(45,139,78,0.18); }
            /* Selected route compact chip */
            .dt-selected-route {
                display: flex; align-items: center; gap: 14px;
                padding: 14px 18px; border: 1.5px solid #2D8B4E; border-radius: 14px;
                background: linear-gradient(135deg, #f0faf3, #e8f5ec);
                margin-bottom: 16px; position: relative; flex-shrink: 0;
                box-shadow: 0 2px 8px rgba(45,139,78,0.1);
            }
            .dt-selected-route img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
            .dt-selected-route-info { flex: 1; }
            .dt-selected-route-info h4 { font-size: 16px; font-weight: 600; color: #1A1A1A; font-family: 'Montserrat', sans-serif; }
            .dt-selected-route-info p { font-size: 13px; color: #6B8F6B; }
            .dt-change-btn {
                padding: 6px 16px; border: 1.5px solid rgba(45,139,78,0.3); border-radius: 8px;
                background: rgba(255,255,255,0.7); color: #2D8B4E; font-size: 12px; font-weight: 600;
                cursor: pointer; font-family: 'Montserrat', sans-serif; transition: all 0.25s; flex-shrink: 0;
            }
            .dt-change-btn:hover { background: #2D8B4E; color: #fff; box-shadow: 0 2px 8px rgba(45,139,78,0.2); }
            .dt-selected-route .dt-check { position: static; flex-shrink: 0; margin-left: auto; margin-right: 64px; }
            /* Image loading: skeleton + fade-in */
            .dt-img-wrap {
                background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f5f5f5 100%);
                background-size: 200% 100%;
                animation: dtShimmerBg 1.2s ease-in-out infinite;
                position: relative; overflow: hidden;
            }
            .dt-img-wrap.loaded { animation: none; background: #ffffff; }
            .dt-img-wrap img { opacity: 0; transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
            .dt-img-wrap img.loaded { opacity: 1; }
            @keyframes dtShimmerBg {
                0% { background-position: 200% 0; }
                100% { background-position: -200% 0; }
            }

            /* ── Step 2: Tu Viaje ── */
            .dt-s2-pkgs { margin-bottom: 24px; flex-shrink: 0; }
            .dt-pkg-grid { gap: 14px; align-content: start; }
            .dt-pkg-grid .route-card { width: 220px; }
            .dt-pkg-grid .route-card .route-image { height: 120px !important; }
            .dt-pkg-grid .route-info { padding: 10px 12px !important; }
            .dt-pkg-grid .route-info h3 { font-size: 13px !important; }
            .dt-pkg-grid .route-info p { font-size: 11px !important; }
            .dt-s2-bottom { display: flex; flex-direction: column; gap: 20px; flex: 1; min-height: 0; }
            .dt-s2-accom-col { display: flex; flex-direction: column; flex: 1; min-height: 0; }
            .dt-s2-meal-col { flex-shrink: 0; }
            .dt-accom-grid {
                display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 16px;
                overflow: visible !important;
            }
            .dt-accom-grid .accom-overlay-card {
                width: auto !important; aspect-ratio: 4/3;
                border-radius: 14px !important;
                box-shadow: 0 2px 8px rgba(0,0,0,0.05); border-color: transparent !important;
                flex-shrink: 0; display: flex; flex-direction: column;
                min-height: 180px;
            }
            .dt-accom-grid .accom-overlay-card img { flex: 1; min-height: 0; object-fit: cover; }
            .dt-accom-grid .accom-overlay-card:hover { box-shadow: 0 0 0 2px #2D8B4E; border-color: #2D8B4E !important; transform: none; }
            .dt-accom-grid .accom-overlay-card .accom-label { font-family: 'Montserrat', sans-serif; font-size: 18px; }
            .dt-meal-list { display: flex; flex-direction: column; gap: 8px; }
            .dt-meal-card {
                display: flex; align-items: center; gap: 12px;
                padding: 14px 18px; border: 1.5px solid #EEECE8; border-radius: 12px;
                cursor: pointer; transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
                background: #fff; position: relative;
                box-shadow: 0 1px 2px rgba(0,0,0,0.02);
            }
            .dt-meal-card:hover { border-color: #2D8B4E; box-shadow: 0 4px 14px rgba(45,139,78,0.12); }
            .dt-meal-card.selected { border-color: #2D8B4E; background: linear-gradient(135deg, #f0faf3, #e8f5ec); box-shadow: 0 2px 8px rgba(45,139,78,0.08); }
            .dt-meal-icon { font-size: 22px; width: 32px; text-align: center; }
            .dt-meal-card span:last-child { font-size: 14px; font-weight: 500; color: #333; }
            .dt-group-dates-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 20px; align-content: start; max-width: 900px; margin: 0 auto 20px; }
            .dt-group-dates-grid .group-date-card {
                border: 1.5px solid #EEECE8 !important; border-radius: 10px !important;
                box-shadow: 0 1px 4px rgba(0,0,0,0.04); background: #fff !important;
                transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1) !important;
                padding: 10px 16px !important; margin-bottom: 0 !important;
            }
            .dt-group-dates-grid .group-date-card:hover { border-color: #2D8B4E !important; box-shadow: 0 4px 14px rgba(45,139,78,0.12) !important; }
            .dt-group-dates-grid .group-date-card.selected {
                border-color: #2D8B4E !important;
                background: linear-gradient(135deg, #f0faf3, #e8f5ec) !important;
                box-shadow: 0 2px 8px rgba(45,139,78,0.1) !important;
            }
            .dt-group-dates-grid .group-date-card h4 { font-family: 'Montserrat', sans-serif; font-size: 14px !important; }
            .dt-group-dates-grid .group-date-card p { font-family: 'Montserrat', sans-serif; font-size: 11px !important; margin-top: 2px !important; }

            /* ── Step 3: Detalles (3-column layout) ── */
            .dt-s3-cols {
                display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
                flex: 1; min-height: 0; align-items: start;
            }
            .dt-s3-cols-2 {
                display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
                flex: 1; min-height: 0; align-items: start;
            }
            #dt-content > .dt-s3-cols, #dt-content > .dt-s3-cols-2 { flex: 1; min-height: 0; }
            /* Room cards */
            .dt-s3-room-grid {
                display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 4px;
            }
            .dt-s3-room-grid.dt-room-single { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 4px; }
            .dt-room-card {
                display: flex; flex-direction: column; align-items: center; justify-content: center;
                padding: 22px 20px; border: 2px solid #EEECE8; border-radius: 14px;
                background: #fff; transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
                box-shadow: 0 2px 6px rgba(0,0,0,0.04); text-align: center; gap: 12px;
            }
            .dt-room-card-info { text-align: center; }
            .dt-room-card:hover { border-color: #c8e6d0; box-shadow: 0 4px 14px rgba(45,139,78,0.08); transform: translateY(-1px); }
            .dt-room-card.active { border-color: #2D8B4E; background: linear-gradient(135deg, #f0faf3, #e8f5ec); box-shadow: 0 3px 12px rgba(45,139,78,0.1); }
            .dt-room-card-info h4 { font-size: 17px; font-weight: 600; color: #1A1A1A; margin-bottom: 2px; }
            .dt-room-card-info p { font-size: 14px; color: #999; }
            .dt-room-card-ctrl { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
            .dt-room-card-ctrl .counter-btn {
                width: 44px; height: 44px; font-size: 22px; border-radius: 50%;
                background: #2D8B4E; color: #fff; border: none; cursor: pointer;
                display: flex; align-items: center; justify-content: center;
                font-weight: 700; transition: all 0.15s; line-height: 1;
            }
            .dt-room-card-ctrl .counter-btn:hover { background: #1A6B35; transform: scale(1.08); }
            .dt-room-card-ctrl .counter-btn:disabled { background: #e8e8e8; color: #bbb; cursor: not-allowed; transform: none; }
            .dt-room-card-ctrl .counter-value { font-size: 24px; font-weight: 700; min-width: 36px; text-align: center; color: #1A1A1A; }
            .dt-room-summary {
                grid-column: 1 / -1; text-align: center; padding: 14px 20px;
                background: linear-gradient(135deg, #f0faf3, #e8f5ec); border: 2px solid #2D8B4E;
                border-radius: 12px; font-size: 16px; font-weight: 600; color: #2D8B4E;
                font-family: 'Montserrat', sans-serif; margin-top: 4px;
                animation: dtFadeIn 0.3s ease both;
            }

            /* Group date compact bar */
            .dt-group-date-bar {
                display: flex; align-items: center; gap: 14px;
                padding: 14px 20px; background: linear-gradient(135deg, #f0faf3, #e8f5ec);
                border: 1px solid rgba(45,139,78,0.2); border-radius: 12px; margin: 16px 0 8px;
                box-shadow: 0 2px 8px rgba(45,139,78,0.06);
            }
            .dt-group-date-icon { font-size: 20px; flex-shrink: 0; }
            .dt-group-date-label { display: block; font-size: 11px; font-weight: 600; color: #2D8B4E; text-transform: uppercase; letter-spacing: 0.5px; }
            .dt-group-date-value { display: block; font-size: 14px; font-weight: 600; color: #1A1A1A; margin-top: 1px; }

            /* Calendar - stacks vertically in column */
            .dt-s3-cal-wrap {
                background: #fff; border: 1px solid #EEECE8; border-radius: 14px;
                padding: 14px; margin-top: 4px;
                box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            }
            /* Normal 2-month calendar for desktop */
            .dt-s3-cal-wrap .calendar-container {
                flex-direction: row !important; gap: 8px !important;
                padding: 0 !important; position: relative;
                align-items: flex-start;
            }
            .dt-s3-cal-wrap .calendar-wrapper {
                flex: 1; min-width: 0;
                border-radius: 8px !important; background: #fff;
            }
            .dt-s3-cal-wrap .calendar-day { height: 32px !important; font-size: 13px !important; }
            .dt-s3-cal-wrap .calendar-weekdays span { font-size: 10px !important; }
            .dt-s3-cal-wrap .calendar-month-label { font-size: 14px !important; font-weight: 600 !important; }
            .dt-s3-cal-wrap .cal-nav-global {
                position: absolute !important; top: 10px; z-index: 5;
                width: 28px; height: 28px; border-radius: 50%;
                background: #fff; border: 1px solid #ddd; display: flex;
                align-items: center; justify-content: center; cursor: pointer;
                font-size: 18px; color: #666; box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            }
            .dt-s3-cal-wrap .cal-nav-global:hover { background: #f0faf3; border-color: #2D8B4E; color: #2D8B4E; }
            .dt-s3-cal-wrap .cal-nav-prev { left: 8px !important; }
            .dt-s3-cal-wrap .cal-nav-next { right: 8px !important; }
            .dt-s3-cal-wrap .calendar-header { padding: 8px 12px !important; }

            /* Multi-month calendar grid for GROUP dates (4 cols x 2 rows) */
            .dt-cal-multi-grid {
                display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 10px;
                width: 100%;
            }
            .dt-cal-multi .calendar-wrapper {
                flex: none; min-width: 0; width: 100%;
                border-radius: 8px !important; background: #fff;
                border: 1px solid #EEECE8;
            }
            .dt-cal-multi .calendar-day { height: 26px !important; font-size: 11px !important; }
            .dt-cal-multi .calendar-weekdays span { font-size: 9px !important; }
            .dt-cal-multi .calendar-weekdays { padding: 4px 4px 0 !important; }
            .dt-cal-multi .calendar-days { padding: 2px 4px 6px !important; gap: 1px !important; }
            .dt-cal-multi .calendar-month-label { font-size: 12px !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: 0.5px; }
            .dt-cal-multi .calendar-header { padding: 6px 8px !important; }
            .dt-cal-multi .cal-nav-global { display: none !important; }
            /* Group calendar day states */
            .calendar-day.grp-unavail { color: #ddd !important; cursor: default !important; background: none !important; }
            .calendar-day.grp-avail { cursor: pointer !important; transition: all 0.15s; }
            .calendar-day.grp-mid { background: #E8F5EC !important; border-radius: 0 !important; color: #2D8B4E !important; font-weight: 500 !important; }
            .calendar-day.grp-start { background: #2D8B4E !important; color: #fff !important; font-weight: 700 !important; border-radius: 50% 0 0 50% !important; }
            .calendar-day.grp-end { background: #2D8B4E !important; color: #fff !important; font-weight: 700 !important; border-radius: 0 50% 50% 0 !important; }
            .calendar-day.grp-hover { background: #c8e6d0 !important; transform: scale(1.05); }
            .calendar-day.grp-hover.grp-start, .calendar-day.grp-hover.grp-end { background: #1A6B35 !important; }
            .calendar-day.grp-selected { outline: 2.5px solid #2D8B4E !important; outline-offset: -1px; }
            .calendar-day.grp-selected.grp-mid { background: #d4f0db !important; }
            .calendar-day.grp-selected.grp-start, .calendar-day.grp-selected.grp-end { background: #1A6B35 !important; box-shadow: 0 2px 6px rgba(45,139,78,0.3); }

            /* Transfer options */
            .dt-transfer-opt {
                display: flex; align-items: center; gap: 18px;
                padding: 20px 28px; border: 2px solid #EEECE8; border-radius: 14px;
                cursor: pointer; transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
                background: #fff; margin-bottom: 10px;
                box-shadow: 0 2px 6px rgba(0,0,0,0.04);
            }
            .dt-transfer-opt:hover { border-color: #a0d4b0; background: #fcfffe; box-shadow: 0 4px 14px rgba(45,139,78,0.08); transform: translateY(-1px); }
            .dt-transfer-opt.selected { border-color: #2D8B4E; background: linear-gradient(135deg, #f0faf3, #e8f5ec); box-shadow: 0 3px 12px rgba(45,139,78,0.1); }
            .dt-transfer-opt-icon {
                width: 42px; height: 42px; border-radius: 50%; background: #f0f0f0;
                display: flex; align-items: center; justify-content: center;
                font-size: 18px; color: #999; flex-shrink: 0; font-weight: 700;
            }
            .dt-transfer-opt.selected .dt-transfer-opt-icon { background: #2D8B4E; color: #fff; }
            .dt-transfer-opt-label { font-size: 17px; font-weight: 600; color: #333; }
            .dt-transfer-list { display: flex; flex-direction: column; }
            .dt-transfer-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
            .dt-transfer-cat {
                font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
                padding: 3px 10px; border-radius: 4px; display: inline-block; width: fit-content;
            }
            .dt-transfer-cat.ida { background: #E8F5EC; color: #2D8B4E; }
            .dt-transfer-cat.vuelta { background: #FFF3E0; color: #E65100; }
            .dt-transfer-label { font-size: 16px; color: #333; font-weight: 500; }
            .dt-transfer-price { font-size: 16px; color: #2D8B4E; font-weight: 700; flex-shrink: 0; }
            /* Transfers in 2 columns */
            .dt-transfer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .dt-transfer-grid .dt-transfer-opt { margin-bottom: 0; }
            /* dt-transfer-no is just another cell in the 2-col grid */
            /* Meals in 3 columns */
            .dt-meals-grid { grid-template-columns: repeat(3, 1fr) !important; }
            /* Bike types in 3 columns */
            .dt-bike-3col { grid-template-columns: repeat(3, 1fr) !important; }
            .dt-bike-3col .dt-type-card { padding: 14px 10px !important; }
            .dt-bike-3col .dt-type-card h3:first-of-type { font-size: 22px !important; margin-bottom: 4px !important; }
            .dt-bike-3col .dt-type-card h3:last-of-type { font-size: 11px !important; white-space: normal !important; line-height: 1.3; }
            .dt-bike-3col .dt-type-card p { font-size: 10px !important; }
            /* Bike category columns layout */
            .dt-bike-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; width: 100%; }
            .dt-bike-col { display: flex; flex-direction: column; gap: 10px; }
            .dt-bike-col-header {
                background: linear-gradient(135deg, #2D8B4E, #3AAF6B); color: #fff; text-align: center;
                padding: 10px 12px; border-radius: 24px; font-size: 13px; font-weight: 700;
                letter-spacing: 0.8px; text-transform: uppercase;
            }
            .dt-bike-item {
                display: flex; flex-direction: column; padding: 16px; border: 1.5px solid #EEECE8;
                border-radius: 12px; background: #fff; transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
            }
            .dt-bike-item:hover { border-color: #c8e6d0; box-shadow: 0 4px 14px rgba(45,139,78,0.08); }
            .dt-bike-item.active { border-color: #2D8B4E; background: linear-gradient(135deg, #f0faf3, #e8f5ec); }
            .dt-bike-item h4 { font-size: 15px; font-weight: 700; color: #1A1A1A; margin: 0 0 2px; }
            .dt-bike-item p { font-size: 12px; color: #999; margin: 0 0 12px; }
            .dt-bike-item .dt-bike-ctrl { display: flex; align-items: center; justify-content: center; gap: 14px; }
            .dt-bike-item .dt-bike-ctrl .counter-btn {
                width: 36px; height: 36px; font-size: 18px; border-radius: 50%;
                background: #2D8B4E; color: #fff; border: none; cursor: pointer;
                display: flex; align-items: center; justify-content: center;
                font-weight: 700; transition: all 0.15s; line-height: 1;
            }
            .dt-bike-item .dt-bike-ctrl .counter-btn:hover { background: #1A6B35; transform: scale(1.08); }
            .dt-bike-item .dt-bike-ctrl .counter-btn:disabled { background: #e8e8e8; color: #bbb; cursor: not-allowed; transform: none; }
            .dt-bike-item .dt-bike-ctrl .counter-value { font-size: 22px; font-weight: 700; min-width: 30px; text-align: center; color: #1A1A1A; }
            .dt-bike-own-check { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 16px; cursor: pointer; }
            .dt-bike-own-check input[type="checkbox"] { width: 20px; height: 20px; accent-color: #2D8B4E; cursor: pointer; }
            .dt-bike-own-check label { font-size: 16px; color: #333; cursor: pointer; }
            @media (max-width: 700px) {
                .dt-bike-cols { grid-template-columns: 1fr; gap: 20px; }
            }
            /* Contact form inline (name, email, phone on one row) */
            .dt-contact-row { display: flex; gap: 16px; align-items: start; }
            .dt-contact-field { display: flex; flex-direction: column; flex: 1; }
            .dt-contact-field.dt-phone-field { flex: 0 0 242px; max-width: 242px; }
            .dt-contact-field.dt-phone-field .phone-input-wrapper { max-width: 242px !important; }
            .dt-contact-field .input-label { margin-top: 0 !important; }

            /* ── Step 4: Tus Datos ── */
            .dt-s4-form { width: 100%; max-width: 900px; margin: 0 auto; }
            .dt-s4-form .input-label { font-size: 12px !important; margin-top: 20px !important; margin-bottom: 7px !important; }
            .dt-s4-form .input-label:first-child { margin-top: 0 !important; }
            .dt-s4-form .input-label.dt-label {
                text-transform: none !important; font-size: 15px !important; font-weight: 600 !important;
                color: #4A4A40 !important; letter-spacing: 0.3px !important;
                font-family: 'Montserrat', sans-serif !important;
            }
            .dt-s4-form .text-input {
                max-width: 100% !important; width: 100% !important; height: 52px !important; font-size: 15px !important;
                border-radius: 10px !important; border: 1.5px solid #EEECE8 !important;
                background: #FAFAFA !important; font-family: 'Montserrat', sans-serif !important;
                transition: all 0.2s !important; box-shadow: none !important;
                padding: 0 16px !important;
            }
            .dt-s4-form .text-input:focus {
                border-color: #2D8B4E !important; outline: none !important; background: #fff !important;
                box-shadow: 0 0 0 3px rgba(45,139,78,0.08) !important;
            }
            /* Input with icon */
            .dt-s4-icon-input {
                position: relative; display: flex; align-items: center;
            }
            .dt-s4-icon-input .dt-s4-icon {
                position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
                color: #AAA; pointer-events: none; display: flex;
            }
            .dt-s4-icon-input .text-input { padding-left: 42px !important; }
            .dt-s4-form .phone-input-wrapper {
                max-width: 100% !important; height: 52px !important; border-radius: 10px !important;
                border: 1.5px solid #EEECE8 !important; box-shadow: none !important;
                background: #FAFAFA !important;
            }
            .dt-s4-form .phone-input-wrapper:focus-within {
                border-color: #2D8B4E !important;
                box-shadow: 0 0 0 3px rgba(45,139,78,0.08) !important; background: #fff !important;
            }
            .dt-s4-phone-wrap {
                display: flex; align-items: center; gap: 8px;
            }
            .dt-s4-phone-wrap .phone-input-wrapper { flex: 1; }
            .dt-s4-row { display: grid; grid-template-columns: 3fr 2fr; gap: 20px; margin-top: 20px; }
            .dt-s4-form .text-area {
                max-width: 100% !important; width: 100% !important; font-size: 15px !important;
                border-radius: 10px !important; border: 1.5px solid #EEECE8 !important;
                background: #FAFAFA !important; font-family: 'Montserrat', sans-serif !important;
                transition: all 0.2s !important; box-shadow: none !important;
                padding: 16px !important; resize: vertical;
                flex: 1; min-height: 120px !important;
            }
            .dt-s4-form .text-area:focus {
                border-color: #2D8B4E !important; outline: none !important; background: #fff !important;
                box-shadow: 0 0 0 3px rgba(45,139,78,0.08) !important;
            }
            .dt-s4-notes-wrap { display: flex; flex-direction: column; flex: 1; min-height: 0; margin-top: 20px; }

            /* ── Step 5: Confirmar (full viewport) ── */
            .dt-summary { width: 100%; border: 2px solid #2D8B4E; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 8px rgba(45,139,78,0.1); }
            .dt-summary-banner {
                display: flex; align-items: center; gap: 14px;
                padding: 20px 32px;
                background: linear-gradient(135deg, #f0faf3, #e8f5ec);
                font-size: 16px; font-weight: 600; color: var(--primary);
                font-family: 'Montserrat', sans-serif;
            }
            .dt-summary-banner svg { flex-shrink: 0; stroke: var(--primary); }
            .dt-summary-table {
                border-top: 1px solid rgba(45,139,78,0.15);
                overflow: hidden;
                background: #fff;
            }
            .dt-summary-row {
                display: grid; grid-template-columns: 180px 1fr; align-items: center;
                padding: 18px 32px; border-bottom: 1px solid #F5F3EE;
                transition: background 0.15s;
            }
            .dt-summary-row:hover { background: #FAFAF7; }
            .dt-summary-row:last-child { border-bottom: none; }
            .dt-summary-label {
                font-size: 13px; color: #8A8A80; font-weight: 500;
                font-family: 'Montserrat', sans-serif;
            }
            .dt-summary-value {
                font-size: 14px; color: #1A1A1A; font-weight: 600;
                font-family: 'Montserrat', sans-serif;
            }
            .dt-terms-wrap {
                margin-top: 28px; width: 100%;
                padding: 22px 28px; background: #fff; border-radius: 12px;
                border: 1px solid #EEECE8; box-shadow: 0 1px 4px rgba(0,0,0,0.02);
            }
            .dt-terms-wrap .checkbox-wrapper { padding: 0 !important; border: none !important; background: transparent !important; }
            .dt-terms-wrap .checkbox-label { font-size: 14px !important; color: #4A4A40 !important; font-family: 'Montserrat', sans-serif !important; }
            .dt-submit-row { margin-top: 24px; }

            /* ── Validation ── */
            .dt-val-msg { color: #e74c3c; font-size: 12px; margin-top: 4px; display: none; }
            .dt-val-msg.show { display: block; }

            /* ═══ ENHANCED ANIMATIONS ═══ */

            /* Spring-like easing variable */
            :root { --spring: cubic-bezier(0.22, 1, 0.36, 1); --bounce: cubic-bezier(0.34, 1.56, 0.64, 1); }

            /* Button micro-interactions: hover lift + tap press */
            .dt-btn-primary, .dt-btn-submit, .dt-show-more-btn, .dt-change-btn {
                transition: transform 0.2s var(--spring), box-shadow 0.2s var(--spring), background 0.2s !important;
            }
            .dt-btn-primary:hover, .dt-btn-submit:hover {
                transform: translateY(-2px) !important;
                box-shadow: 0 6px 20px rgba(45,139,78,0.25) !important;
            }
            .dt-btn-primary:active, .dt-btn-submit:active {
                transform: translateY(0) scale(0.97) !important;
                box-shadow: 0 2px 8px rgba(45,139,78,0.15) !important;
                transition-duration: 0.08s !important;
            }

            /* Card hover: lift + shadow (all card types) */
            .dt-type-card, .route-card, .accom-overlay-card, .dt-room-card, .dt-transfer-opt, .group-date-card {
                transition: transform 0.25s var(--spring), box-shadow 0.25s var(--spring), border-color 0.2s !important;
            }
            .dt-type-card:hover, .dt-options-grid .route-card:hover, .dt-room-card:hover {
                transform: translateY(-3px) !important;
                box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
            }
            .dt-type-card:active, .dt-options-grid .route-card:active, .dt-room-card:active {
                transform: translateY(-1px) scale(0.98) !important;
                transition-duration: 0.08s !important;
            }
            .dt-transfer-opt:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 18px rgba(45,139,78,0.1) !important; }
            .dt-transfer-opt:active { transform: translateY(0) scale(0.98) !important; transition-duration: 0.08s !important; }

            /* Counter button bounce */
            .dt-room-card-ctrl .counter-btn {
                transition: transform 0.15s var(--bounce), background 0.15s !important;
            }
            .dt-room-card-ctrl .counter-btn:hover:not(:disabled) { transform: scale(1.12) !important; }
            .dt-room-card-ctrl .counter-btn:active:not(:disabled) { transform: scale(0.92) !important; transition-duration: 0.06s !important; }

            /* Enhanced stagger: more children, smoother */
            .dt-fade-in > *:nth-child(7) { animation: dtFadeChild 0.4s var(--spring) 0.35s both; }
            .dt-fade-in > *:nth-child(8) { animation: dtFadeChild 0.4s var(--spring) 0.4s both; }
            .dt-fade-in > *:nth-child(9) { animation: dtFadeChild 0.4s var(--spring) 0.45s both; }
            .dt-fade-in > *:nth-child(10) { animation: dtFadeChild 0.4s var(--spring) 0.5s both; }

            /* Grid items stagger (packages, routes, bikes, meals) */
            .dt-options-grid > *:nth-child(1) { animation: dtCardIn 0.35s var(--spring) 0.05s both; }
            .dt-options-grid > *:nth-child(2) { animation: dtCardIn 0.35s var(--spring) 0.1s both; }
            .dt-options-grid > *:nth-child(3) { animation: dtCardIn 0.35s var(--spring) 0.15s both; }
            .dt-options-grid > *:nth-child(4) { animation: dtCardIn 0.35s var(--spring) 0.2s both; }
            .dt-options-grid > *:nth-child(5) { animation: dtCardIn 0.35s var(--spring) 0.25s both; }
            .dt-options-grid > *:nth-child(6) { animation: dtCardIn 0.35s var(--spring) 0.3s both; }
            .dt-options-grid > *:nth-child(7) { animation: dtCardIn 0.35s var(--spring) 0.35s both; }
            .dt-options-grid > *:nth-child(8) { animation: dtCardIn 0.35s var(--spring) 0.4s both; }
            @keyframes dtCardIn {
                from { opacity: 0; transform: translateY(12px) scale(0.96); }
                to { opacity: 1; transform: translateY(0) scale(1); }
            }

            /* Room/bike list stagger */
            .dt-s3-room-grid > *:nth-child(1) { animation: dtListIn 0.3s var(--spring) 0.03s both; }
            .dt-s3-room-grid > *:nth-child(2) { animation: dtListIn 0.3s var(--spring) 0.08s both; }
            .dt-s3-room-grid > *:nth-child(3) { animation: dtListIn 0.3s var(--spring) 0.13s both; }
            .dt-s3-room-grid > *:nth-child(4) { animation: dtListIn 0.3s var(--spring) 0.18s both; }
            .dt-s3-room-grid > *:nth-child(5) { animation: dtListIn 0.3s var(--spring) 0.23s both; }
            .dt-s3-room-grid > *:nth-child(6) { animation: dtListIn 0.3s var(--spring) 0.28s both; }
            .dt-s3-room-grid > *:nth-child(7) { animation: dtListIn 0.3s var(--spring) 0.33s both; }
            .dt-s3-room-grid > *:nth-child(8) { animation: dtListIn 0.3s var(--spring) 0.38s both; }
            @keyframes dtListIn {
                from { opacity: 0; transform: translateX(-10px); }
                to { opacity: 1; transform: translateX(0); }
            }

            /* Transfer grid stagger */
            .dt-transfer-grid > *:nth-child(1) { animation: dtCardIn 0.3s var(--spring) 0.03s both; }
            .dt-transfer-grid > *:nth-child(2) { animation: dtCardIn 0.3s var(--spring) 0.08s both; }
            .dt-transfer-grid > *:nth-child(3) { animation: dtCardIn 0.3s var(--spring) 0.13s both; }
            .dt-transfer-grid > *:nth-child(4) { animation: dtCardIn 0.3s var(--spring) 0.18s both; }

            /* Progress circle pulse on active */
            .dt-pb-step.active .dt-pb-circle {
                animation: dtPulse 0.4s var(--bounce) both;
            }
            @keyframes dtPulse {
                0% { transform: scale(0.8); opacity: 0.5; }
                60% { transform: scale(1.08); }
                100% { transform: scale(1); opacity: 1; }
            }

            /* Calendar month grid stagger */
            .dt-cal-multi-grid > *:nth-child(1) { animation: dtCardIn 0.3s var(--spring) 0.02s both; }
            .dt-cal-multi-grid > *:nth-child(2) { animation: dtCardIn 0.3s var(--spring) 0.06s both; }
            .dt-cal-multi-grid > *:nth-child(3) { animation: dtCardIn 0.3s var(--spring) 0.1s both; }
            .dt-cal-multi-grid > *:nth-child(4) { animation: dtCardIn 0.3s var(--spring) 0.14s both; }
            .dt-cal-multi-grid > *:nth-child(5) { animation: dtCardIn 0.3s var(--spring) 0.18s both; }
            .dt-cal-multi-grid > *:nth-child(6) { animation: dtCardIn 0.3s var(--spring) 0.22s both; }
            .dt-cal-multi-grid > *:nth-child(7) { animation: dtCardIn 0.3s var(--spring) 0.26s both; }
            .dt-cal-multi-grid > *:nth-child(8) { animation: dtCardIn 0.3s var(--spring) 0.3s both; }

            /* Breadcrumb chips enter animation */
            .dt-crumb { animation: dtChipIn 0.25s var(--bounce) both; }
            @keyframes dtChipIn {
                from { opacity: 0; transform: scale(0.85); }
                to { opacity: 1; transform: scale(1); }
            }

            /* Skeleton loading shimmer (already exists, enhance) */
            .dt-img-wrap::before {
                content: ''; position: absolute; inset: 0; z-index: 1;
                background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
                background-size: 200% 100%;
                animation: dtShimmer 1.5s ease-in-out infinite;
                border-radius: inherit;
            }
            .dt-img-wrap img[src] ~ ::before, .dt-img-wrap.loaded::before { display: none; }
            @keyframes dtShimmer {
                0% { background-position: 200% 0; }
                100% { background-position: -200% 0; }
            }

            /* Input focus glow animation */
            .dt-s4-form .text-input:focus, .dt-s4-form .text-area:focus {
                animation: dtFocusGlow 0.3s var(--spring) both;
            }
            @keyframes dtFocusGlow {
                from { box-shadow: 0 0 0 0 rgba(45,139,78,0); }
                to { box-shadow: 0 0 0 3px rgba(45,139,78,0.08); }
            }

            /* Selected card checkmark animation */
            .dt-type-card.selected::after, .route-card.selected::after {
                animation: dtCheckIn 0.25s var(--bounce) both;
            }
            @keyframes dtCheckIn {
                from { transform: scale(0); opacity: 0; }
                to { transform: scale(1); opacity: 1; }
            }
        }

        /* ═══ RESPONSIVE IMPROVEMENTS ═══ */

        /* Tablet (600-899px) */
        @media (min-width: 600px) and (max-width: 899px) {
            .choice-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
            .route-grid { grid-template-columns: repeat(3, 1fr); }
            .slide-content { max-width: 600px; margin: 0 auto; padding: 32px 24px; }
        }

        /* Desktop small (900-1100px) */
        @media (min-width: 900px) and (max-width: 1100px) {
            #dt-content { padding: 20px 30px 20px !important; }
            .dt-options-grid { gap: 10px !important; }
            .dt-contact-row { flex-direction: column !important; }
            .dt-contact-field.dt-phone-field { flex: 1 !important; max-width: 100% !important; }
            .dt-contact-field.dt-phone-field .phone-input-wrapper { max-width: 100% !important; }
            .dt-cal-multi-grid { grid-template-columns: repeat(3, 1fr) !important; }
            .dt-transfer-grid { grid-template-columns: 1fr !important; }
        }

        /* Desktop large (1400px+) */
        @media (min-width: 1400px) {
            #dt-content-inner { max-width: 1000px !important; }
        }

        /* ═══ PREFERS REDUCED MOTION ═══ */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            .dt-img-wrap::before { animation: none !important; }
            .loading-spinner { animation-duration: 0.8s !important; animation-iteration-count: infinite !important; }
        }
