/* =====================================================
   tour-booking-sidebar.css  –  Tour Package Booking Form
   Loaded alongside cab-detail.css on all package pages
   visitkashi.com
===================================================== */

/* ══════════════════════════════
   FORM HEADER (maroon-orange gradient)
══════════════════════════════ */
.tkf-header {
    background: linear-gradient(135deg, #7b2d00 0%, #d4850a 100%);
    padding: 20px 22px 16px;
}
.tkf-header h3 {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    margin: 0 0 3px !important;
    border: none !important;
    line-height: 1.3;
}
.tkf-header p {
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    margin: 0 0 10px;
}

/* Trust strip */
.tkf-trust {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 8px;
}
.tkf-trust-item {
    flex: 1;
    background: rgba(255,255,255,0.15);
    text-align: center;
    padding: 6px 4px;
    font-size: 10.5px;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.tkf-trust-item:last-child { border-right: none; }
.tkf-trust-item i {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
    color: #fde68a;
}

/* ══════════════════════════════
   FORM BODY
══════════════════════════════ */
.tkf-body {
    padding: 18px 20px 20px;
}

/* Section divider label */
.tkf-section-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #d4850a;
    margin: 14px 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tkf-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #f3f4f6;
}
.tkf-section-label:first-child { margin-top: 0; }

/* 2-col row */
.tkf-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-bottom: 9px;
}
/* 3-col row (travellers) */
.tkf-row3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

/* Form group */
.tkf-group {
    margin-bottom: 9px;
}
.tkf-group label,
.tkf-row2 .tkf-group label,
.tkf-row3 .tkf-group label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.tkf-group input,
.tkf-group select,
.tkf-group textarea {
    width: 100%;
    padding: 9px 11px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    color: #1a1a2e;
    background: #f9fafb;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.tkf-group input:focus,
.tkf-group select:focus,
.tkf-group textarea:focus {
    border-color: #d4850a;
    box-shadow: 0 0 0 3px rgba(212,133,10,0.11);
    background: #fff;
}
.tkf-group textarea {
    resize: none;
    height: 64px;
    font-size: 12.5px;
}

/* ══════════════════════════════
   TRAVELLER COUNTER (compact)
══════════════════════════════ */
.tkf-counter-wrap {
    margin-bottom: 0;
}
.tkf-counter-wrap label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.tkf-age-tag {
    font-size: 9px;
    font-weight: 500;
    color: #ef4444;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.tkf-counter {
    display: flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #f9fafb;
    transition: border-color 0.2s;
}
.tkf-counter:focus-within {
    border-color: #d4850a;
    box-shadow: 0 0 0 3px rgba(212,133,10,0.10);
}
.tkf-counter button {
    width: 28px;
    height: 34px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.15s, background 0.15s;
}
.tkf-counter button:hover { color: #d4850a; background: rgba(212,133,10,0.08); }
.tkf-counter input {
    flex: 1;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    padding: 0 !important;
    outline: none;
}

/* ══════════════════════════════
   HOTEL CATEGORY — RADIO PILLS
══════════════════════════════ */
.tkf-hotel-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.tkf-hotel-pill {
    position: relative;
}
.tkf-hotel-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.tkf-hotel-pill label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 11px;
    border: 1.5px solid #e5e7eb;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
    background: #f9fafb;
}
.tkf-hotel-pill label i { font-size: 11px; }
.tkf-hotel-pill input:checked + label {
    background: #fdf6ee;
    border-color: #d4850a;
    color: #b8720a;
}

/* ══════════════════════════════
   FOOD PLAN — RADIO PILLS
══════════════════════════════ */
.tkf-food-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.tkf-food-pill {
    position: relative;
}
.tkf-food-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.tkf-food-pill label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.18s;
    background: #f9fafb;
}
.tkf-food-pill input:checked + label {
    background: #fdf6ee;
    border-color: #d4850a;
    color: #b8720a;
}

/* ══════════════════════════════
   CAB — ICON CARDS (2×2)
══════════════════════════════ */
.tkf-cab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 10px;
}
.tkf-cab-card {
    position: relative;
}
.tkf-cab-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.tkf-cab-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 11px 8px 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 11.5px;
    font-weight: 700;
    color: #374151;
    cursor: pointer;
    transition: all 0.18s;
    background: #f9fafb;
    text-align: center;
    line-height: 1.2;
}
.tkf-cab-card label .tkf-cab-cap {
    font-size: 10px;
    color: #6b7280;
    font-weight: 400;
}
.tkf-cab-card input:checked + label {
    background: #fdf6ee;
    border-color: #d4850a;
    color: #b8720a;
}
.tkf-cab-card input:checked + label .tkf-cab-cap { color: #b8720a; }

/* ══════════════════════════════
   ADD-ONS — CHECKBOXES (2-col)
══════════════════════════════ */
.tkf-addons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
}
.tkf-addon {
    position: relative;
}
.tkf-addon input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.tkf-addon label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.18s;
    background: #f9fafb;
    line-height: 1.3;
}
.tkf-addon label i {
    color: #6b7280;
    font-size: 12px;
    flex-shrink: 0;
    transition: color 0.18s;
}
.tkf-addon input:checked + label {
    background: #fdf6ee;
    border-color: #d4850a;
    color: #b8720a;
}
.tkf-addon input:checked + label i { color: #d4850a; }

/* ══════════════════════════════
   URGENCY BANNER
══════════════════════════════ */
.tkf-urgency {
    background: linear-gradient(90deg, #7f1d1d, #991b1b);
    border-radius: 8px;
    padding: 9px 13px;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
}
.tkf-urgency i { font-size: 14px; color: #fca5a5; flex-shrink: 0; }

/* ══════════════════════════════
   SUBMIT BUTTON
══════════════════════════════ */
.tkf-btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #d4850a 0%, #f59e0b 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    margin-bottom: 10px;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(212,133,10,0.35);
    letter-spacing: 0.2px;
}
.tkf-btn-submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 7px 22px rgba(212,133,10,0.45);
}
.tkf-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Contact row below button */
.tkf-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.tkf-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.18s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.tkf-contact-btn.wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 2px 8px rgba(37,211,102,0.28);
}
.tkf-contact-btn.wa:hover { background: #1da851; text-decoration: none; }
.tkf-contact-btn.call {
    background: #f9fafb;
    color: #0d1b2a;
    border: 1.5px solid #e5e7eb;
}
.tkf-contact-btn.call:hover { background: #0d1b2a; color: #fff; text-decoration: none; }

/* ══════════════════════════════
   SUCCESS STATE
══════════════════════════════ */
.tkf-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
}
.tkf-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 28px;
    color: #fff;
}
.tkf-success h4 {
    font-size: 17px;
    font-weight: 800;
    color: #0d1b2a;
    margin: 0 0 6px;
}
.tkf-success p {
    font-size: 13.5px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 991px) {
    .tkf-header h3 { font-size: 15px !important; }
}
