/* ABSOLUTE CENTER ALIGNMENT FOR ENTIRE FORM & TABS */
        .puspo-booking-wrapper { max-width: 1100px; width: 100%; margin: 0 auto !important; font-family: 'Poppins', sans-serif; position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; }
        .puspo-tabs { display: flex; flex-wrap: wrap; background: rgba(30, 30, 30, 0.95); border-radius: 12px 12px 0 0; width: fit-content; overflow: hidden; margin: 0 auto; }
        .puspo-tab-btn { background: transparent; color: #fff; border: none; padding: 16px 25px; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 10px; border-right: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease; }
        .puspo-tab-btn:last-child { border-right: none; }
        .puspo-tab-btn.active { background: #046BD2; color: #fff; }
        .puspo-tab-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
        .puspo-tab-content { background: rgba(40, 40, 40, 0.95); border-radius: 0 12px 12px 12px; display: none; backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.05); width: 100%; }
        .puspo-tab-content.active { display: block; }
        .puspo-form-group { display: flex; flex-wrap: wrap; width: 100%; align-items: stretch; padding: 15px; gap: 15px; }
        
        .puspo-form-group .puspo-field { flex: 1 1 200px; display: flex; flex-direction: column; justify-content: center; position: relative; }
        .puspo-form-group .puspo-field label { color: #046BD2; font-size: 12px; margin-bottom: 5px; font-weight: 600; text-transform: uppercase; }
        .puspo-form-group .puspo-field select, .puspo-form-group .puspo-field input { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; border-radius: 6px; padding: 0 15px; height: 46px; line-height: normal; font-size: 14px; font-weight: 500; outline: none; width: 100%; font-family: inherit; color-scheme: dark; transition: 0.3s; }
        .puspo-form-group .puspo-field select:focus, .puspo-form-group .puspo-field input:focus { border-color: #046BD2; background: rgba(255, 255, 255, 0.15); }
        .puspo-form-group .puspo-field input::placeholder { color: rgba(255,255,255,0.4); }
        .puspo-form-group .puspo-field select option { color: #000; }
        
        .puspo-submit-wrap { flex: 1 1 200px; padding: 0; border: none; display: flex; align-items: flex-end; }
        .puspo-continue-btn { background: #046BD2; color: #fff; border: none; height: 46px; width: 100%; font-size: 16px; font-weight: 700; cursor: pointer; border-radius: 6px; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
        .puspo-continue-btn:hover { background: #0353A4; }

        .puspo-autocomplete-list { position: absolute; top: 100%; left: 0; right: 0; background: #ffffff; z-index: 1000; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); max-height: 280px; overflow-y: auto; display: none; margin-top: 5px; border: 1px solid #e2e8f0; text-align: left; }
        .puspo-ac-item { display: flex; align-items: center; padding: 12px 15px; cursor: pointer; border-bottom: 1px solid #f1f5f9; transition: 0.2s; }
        .puspo-ac-item:last-child { border-bottom: none; }
        .puspo-ac-item:hover { background: #f4f8fc; }
        .puspo-ac-iata { font-weight: 800; font-size: 15px; color: #07111F; min-width: 65px; display: flex; align-items: center; }
        .puspo-ac-iata svg { width: 16px; height: 16px; margin-right: 6px; fill: #94a3b8; transform: rotate(45deg); }
        .puspo-ac-details { display: flex; flex-direction: column; overflow: hidden; }
        .puspo-ac-city { font-weight: 600; color: #1e293b; font-size: 14px; line-height: 1.2; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
        .puspo-ac-airport { font-size: 12px; color: #64748b; margin-top: 3px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
        .puspo-autocomplete-list::-webkit-scrollbar { width: 6px; }
        .puspo-autocomplete-list::-webkit-scrollbar-track { background: #f1f5f9; }
        .puspo-autocomplete-list::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

        .puspo-modal-overlay { position: fixed !important; top: 0 !important; left: 0 !important; width: 100vw !important; height: 100vh !important; background: rgba(0, 0, 0, 0.7) !important; backdrop-filter: blur(5px) !important; z-index: 99999999 !important; opacity: 0; visibility: hidden; transition: all 0.4s ease; display: flex; align-items: flex-start !important; justify-content: center !important; overflow-y: auto !important; padding: 100px 15px !important; }
        .puspo-modal-overlay.active { opacity: 1; visibility: visible; }
        
        .puspo-modal-box { background: #ffffff; width: 100%; max-width: 800px; border-radius: 16px; padding: 40px; margin: auto; position: relative; transform: scale(0.9) translateY(40px); opacity: 0; transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
        .puspo-modal-overlay.active .puspo-modal-box { transform: scale(1) translateY(0); opacity: 1; }

        .puspo-modal-close { position: absolute; top: 20px; right: 20px; width: 35px; height: 35px; background: rgba(0,0,0,0.05); color: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; transition: 0.3s; z-index: 10; }
        .puspo-modal-close:hover { background: #ff4757; color: #fff; transform: rotate(90deg); }
        .puspo-modal-header { margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid rgba(0,0,0,0.1); }
        .puspo-modal-header h3 { color: #046BD2; font-size: 24px; margin: 0; font-weight: 700; }
        .puspo-modal-header p { color: #556070; font-size: 13px; margin: 5px 0 0 0; }

        .puspo-modal-msg { display: none; padding: 12px; margin-bottom: 20px; border-radius: 8px; color: #fff; text-align: center; font-weight: 600; }
        .puspo-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .full-width { grid-column: span 2; }
        .section-title { grid-column: span 2; color: #046BD2; font-size: 16px; font-weight: 600; margin-top: 15px; border-bottom: 1px dashed rgba(0,0,0,0.1); padding-bottom: 5px; }
        .puspo-modal-box .puspo-field { display: flex; flex-direction: column; }
        .puspo-modal-box .puspo-field label { color: #046BD2; font-size: 13px; margin-bottom: 8px; font-weight: 600; text-transform: uppercase; }
        .puspo-modal-box .puspo-field input, .puspo-modal-box .puspo-field select, .puspo-modal-box .puspo-field textarea { background: #f8fafc; border: 1px solid #cbd5e1; border-radius: 8px; padding: 14px 15px; color: #1e293b; font-size: 14px; width: 100%; transition: all 0.3s ease; color-scheme: light; font-family: inherit; }
        .puspo-modal-box .puspo-field input:focus, .puspo-modal-box .puspo-field select:focus, .puspo-modal-box .puspo-field textarea:focus { border-color: #046BD2; background: #ffffff; box-shadow: 0 0 0 3px rgba(4, 107, 210, 0.1); outline: none; }
        .puspo-modal-box .puspo-field input::placeholder, .puspo-modal-box .puspo-field textarea::placeholder { color: #94a3b8; }
        .puspo-modal-box .puspo-field input.error-border { border-color: #e74c3c !important; background: #fdf2f2 !important; }

        .iti { width: 100%; display: block; }
        .iti__country-list { background: #ffffff; color: #000; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); z-index: 99999 !important; font-family: inherit; }
        .iti__selected-flag { border-radius: 8px 0 0 8px; }

        .puspo-final-submit-btn { background: #046BD2; color: #fff; border: none; width: 100%; padding: 16px; font-size: 18px; font-weight: 700; cursor: pointer; border-radius: 8px; transition: 0.3s; margin-top: 15px; }
        .puspo-final-submit-btn:hover { background: #0353A4; box-shadow: 0 10px 20px rgba(4, 107, 210, 0.3); transform: translateY(-2px); }
        .puspo-modal-overlay::-webkit-scrollbar { width: 8px; }
        .puspo-modal-overlay::-webkit-scrollbar-track { background: rgba(0,0,0,0.1); }
        .puspo-modal-overlay::-webkit-scrollbar-thumb { background: #046BD2; border-radius: 10px; }

        .hidden-section { display: none !important; }

        @media(max-width: 991px) {
            .puspo-tabs { width: 100%; border-radius: 12px; margin-bottom: 10px; }
            .puspo-tab-btn { flex: 1 1 45%; justify-content: center; font-size: 13px; padding: 12px; }
            .puspo-tab-content { border-radius: 12px; }
            .puspo-form-group .puspo-field { flex: 1 1 100%; }
        }
        @media(max-width: 768px) {
            .puspo-form-grid { grid-template-columns: 1fr; gap: 15px; }
            .full-width, .section-title { grid-column: span 1; }
            .puspo-modal-box { padding: 25px 20px; }
        }

        /* Review popup: added without changing the existing booking form UI. */
        .puspo-review-overlay { position: fixed; inset: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.72); backdrop-filter: blur(6px); z-index: 100000000; opacity: 0; visibility: hidden; display: flex; align-items: center; justify-content: center; padding: 20px; transition: opacity 0.25s ease, visibility 0.25s ease; }
        .puspo-review-overlay.active { opacity: 1; visibility: visible; }
        .puspo-review-box { width: 100%; max-width: 720px; max-height: 88vh; overflow: hidden; background: #fff; border-radius: 16px; box-shadow: 0 25px 70px rgba(0,0,0,0.25); position: relative; display: flex; flex-direction: column; }
        .puspo-review-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: #f1f5f9; color: #334155; font-size: 22px; line-height: 1; cursor: pointer; z-index: 2; }
        .puspo-review-close:hover { background: #ff4757; color: #fff; }
        .puspo-review-header { padding: 28px 64px 18px 28px; border-bottom: 1px solid #e2e8f0; }
        .puspo-review-header h3 { margin: 0; color: #046BD2; font-size: 23px; font-weight: 700; }
        .puspo-review-header p { margin: 6px 0 0; color: #64748b; font-size: 13px; }
        .puspo-review-list { padding: 8px 28px; overflow-y: auto; }
        .puspo-review-item { display: grid; grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr); gap: 18px; padding: 12px 0; border-bottom: 1px solid #eef2f7; align-items: start; }
        .puspo-review-item:last-child { border-bottom: 0; }
        .puspo-review-key { color: #64748b; font-size: 12px; font-weight: 700; text-transform: uppercase; line-height: 1.45; }
        .puspo-review-value { color: #1e293b; font-size: 14px; font-weight: 600; line-height: 1.45; overflow-wrap: anywhere; white-space: pre-wrap; }
        .puspo-review-file::before { content: '📎 '; }
        .puspo-review-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px 28px 24px; border-top: 1px solid #e2e8f0; background: #fff; }
        .puspo-review-edit-btn, .puspo-review-confirm-btn { min-height: 48px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: 0.2s ease; }
        .puspo-review-edit-btn { background: #fff; color: #334155; border: 1px solid #cbd5e1; }
        .puspo-review-edit-btn:hover { background: #f8fafc; }
        .puspo-review-confirm-btn { background: #046BD2; color: #fff; border: 1px solid #046BD2; }
        .puspo-review-confirm-btn:hover { background: #0353A4; border-color: #0353A4; }
        .puspo-review-confirm-btn:disabled { opacity: 0.65; cursor: not-allowed; }
        .puspo-whatsapp-fallback { display: inline-block; margin-left: 8px; padding: 6px 11px; background: #fff; color: #15803d !important; text-decoration: none; border-radius: 6px; font-weight: 700; }

        @media(max-width: 768px) {
            .puspo-review-overlay { padding: 12px; }
            .puspo-review-box { max-height: 92vh; }
            .puspo-review-header { padding: 24px 54px 16px 20px; }
            .puspo-review-header h3 { font-size: 20px; }
            .puspo-review-list { padding: 6px 20px; }
            .puspo-review-item { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
            .puspo-review-actions { grid-template-columns: 1fr; padding: 16px 20px 20px; }
        }

