:root {
  --brand-primary  : #fa606b;
  --brand-secondary: #ff99bd;
  --brand-text     : #0f172a;
  --brand-muted    : #6b7280;
  --brand-soft     : #f2f2f2;  /* light blue border bg for summary */
  --wizard-active  : #fa606b;
  --wizard-inactive: #c1c1c1;
  --info-bg        : #f2f2f2;
  --info-border    : #d1d1d1;
}

  /* Remove border/outline glow on input hover/focus */
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: inherit !important; /* keeps the same border color */
}

input:hover,
textarea:hover,
select:hover {
  border-color: inherit !important;
}

  /* Make date input feel clickable without overlaying the page */
input[type="date"] {
  cursor  : pointer;
  position: relative;  /* ensures any internal parts are scoped */
}

  /* Reset the indicator so it doesn't cover more than it should */
input[type="date"]::-webkit-calendar-picker-indicator {
  position  : static;       /* don't absolutely position it */
  width     : auto;
  height    : auto;
  background: transparent;
}


  /* Limit container width on larger screens */
@media (min-width: 577px) {
  .container {
    max-width: 800px;
  }
}

  /* Show hamburger only on mobile, show normal menu on larger screens */
@media (min-width: 577px) {
  .navbar-toggler {
    display: none !important;
  }
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
}

@media (max-width: 576px) {
  .navbar-collapse {
    display: none;
  }
  .navbar-collapse.show {
    display: block;
  }
}

@media (min-width: 577px) {
  .navbar-collapse {
    flex-direction: row !important;
    align-items: center; /* vertically center items */
    justify-content: flex-end; /* push links to right */
  }
  .navbar-nav {
    flex-direction: row !important;
    gap: 1rem; /* space between links */
  }
}

body {
  font-family: Arial, sans-serif;
  background : #fff;
  color      : var(--brand-text);
}

.logo{
  height: 31px;
    border-radius: 0px;
}

  /* Top announcement bar */
.topbar {
  background: #f8f9fa;
  padding   : 4px 0;
}

  /* Screen heading helper */
.screen-title {
  font-weight  : 700;
  margin-bottom: .75rem;
}

  /* === One-screen controller === */
.tr_form_screen { display: none; }
.tr_form_screen_1 { display: block; }  /* JS also enforces */

  /* Cards + small tweaks */
.card-title  { color: var(--brand-text); }
.card-img-top{ height: 220px; object-fit: cover; }

  /* ===== Screen 2 summary styles ===== */
.summary-wrap{
  display    : flex;
  gap        : 16px;
  align-items: stretch;
}
.summary-side{
display: flex;
    align-items    : center;
    justify-content: center;
    padding        : 16px 12px;
    background     : #ffdde0;
    border-radius  : 8px;
    min-width      : 160px;
    font-weight    : 800;
    color          : #ffffff;
    text-align     : center;
    line-height    : 1.1;
}
.summary-card{
  flex         : 1;
  background   : #fff;
  border       : 2px solid var(--brand-soft);
  border-radius: 8px;
  padding      : 16px;
}
.summary-title{ font-size: 1rem; }
.summary-card i{ color: #334155; font-size: 1rem; }

  /* Buttons */
.btn-secondary{
  background  : var(--brand-primary);
  border-color: #fff;
}
.btn-secondary:hover{
  background  : #5f7b87;
  border-color: #5f7b87;
}
.btn-primary{
  background  : var(--brand-primary);
  border-color: var(--brand-primary);
}

  /* ===== Screen 3 ===== */
.showpass-btn{
  border-color: #ced4da;
}
.showpass-btn:hover{
  background: #f8f9fa;
}

  /* ===== Wizard (Screens 4 & 5) ===== */
.wizard-steps{
  display       : flex;
  gap           : 1rem;
  align-items   : flex-start;
  padding-bottom: 12px;
  margin-bottom : 16px;
  border-bottom : 2px dashed #e5e7eb;  /* rail line */
}
.wizard-step{
  flex      : 1;
  text-align: center;
}
.wizard-step .step-number{
  width        : 34px;
  height       : 34px;
  line-height  : 34px;
  margin       : 0 auto .4rem;
  border-radius: 50%;
  background   : var(--wizard-inactive);
  color        : #fff;
  font-weight  : 700;
  font-size    : 0.95rem;
}
.wizard-step .step-label{
  font-size: .85rem;
  color    : var(--brand-muted);
}
.wizard-step.active .step-number{ background: var(--wizard-active); }
.wizard-step.active .step-label{ color: var(--wizard-active); }

  /* completed step style for Screen 5 */
.wizard-step.completed .step-number{
  background: #22c55e;  /* green */
}
.wizard-step.completed .step-label{
  color: #22c55e;
}

  /* Summary box used in steps 4 & 5 */
.summary-card--step4{
  border-color: var(--brand-soft);
  background  : #fff;
}
.summary-emblem{
  width          : 64px;
  height         : 64px;
  border-radius  : 50%;
  background     : #e9f2f9;
  color          : #274b63;
  display        : flex;
  align-items    : center;
  justify-content: center;
  font-weight    : 800;
}

  /* Info callout box (Screen 4) */
.info-callout{
  background   : var(--info-bg);
  border       : 1px solid var(--info-border);
  border-radius: 6px;
  padding      : 16px;
}

  /* Reset links */
.reset-link{
  font-size      : .9rem;
  color          : #6b7280;
  text-decoration: underline;
}
.reset-link:hover{
  color: #374151;
}

  /* ===== Screen 5 specifics ===== */

  /* Counters */
.counter-group{
  display      : inline-flex;
  align-items  : center;
  border       : 1px solid #d1d5db;
  border-radius: 6px;
  overflow     : hidden;
}
.counter-btn{
  background : #f8fafc;
  border     : none;
  width      : 36px;
  height     : 36px;
  font-weight: 700;
  line-height: 36px;
}
.counter-input{
  width     : 54px;
  height    : 36px;
  border    : 0;
  text-align: center;
  outline   : none;
}

  /* remove native number spinners for a cleaner look */
.counter-input::-webkit-outer-spin-button,
.counter-input::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin            : 0;
}
.counter-input[type=number]{
  -moz-appearance: textfield;
}

  /* Package radio rows */
.package-option{
  display      : block;
  margin-bottom: .6rem;
}
.package-box{
  position     : relative;
  border       : 1px solid #d1d5db;
  border-radius: 8px;
  padding      : .9rem 2.25rem .9rem .9rem;
  background   : #fff;
  transition   : border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.package-option:hover .package-box{
  border-color: #bfc6ce;
}
.package-option input:checked + .package-box{
  border-color: var(--brand-primary);
  box-shadow  : 0 0 0 3px rgba(43,108,176,.12);
  background  : #f6faff;
}
.package-line{
  display    : inline-flex;
  gap        : .6rem;
  align-items: center;
  font-size  : .95rem;
}
.package-caret{
  position : absolute;
  right    : .65rem;
  top      : 50%;
  transform: translateY(-50%);
  color    : #94a3b8;
}

  /* Alerts */
.alert-warning{
  background: #fff8e5;
  border-color: #ffe58f;
}

/* Mobile tweaks */
@media (max-width: 576px){
  .card-img-top { height: 170px; }
  .summary-wrap{ flex-direction: column; }
  .summary-side{ min-width: 100%; }
}



  /* ---------- Screen 6 (Route & Vision) ---------- */
.form-hint{
  color: var(--brand-muted);
  font-size: .9rem;
}

.route-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
@media (max-width: 991.98px){
  .route-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 575.98px){
  .route-grid{ grid-template-columns: 1fr; }
}

.route-option{ display:block; }

.route-card{
  position: relative;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
  cursor: pointer;
}
.route-card:hover{
  transform: translateY(-2px);
  border-color: #bfc6ce;
}
.route-option input:checked + .route-card{
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(43,108,176,.12);
}

.route-img{
  height: 160px;
  background-size: cover;
  background-position: center;
}
.route-img--icon{
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: #9aa6b2; background: #f3f6f9;
}

.route-body{
  padding: 12px 12px 0 12px;
}
.route-title{ font-weight: 600; }
.route-sub{ font-size: .9rem; color: var(--brand-muted); font-style: italic; }

.route-footer{
  padding: 10px 12px;
  border-top: 1px solid #e5e7eb;
  font-size: .9rem;
  color: #4b5563;
  background: #f8fafc;
}

.route-badge{
  position: absolute;
  top: 10px; left: 10px;
  background: #0ea5e9; color: #fff;
  font-size: .75rem; font-weight: 700;
  padding: 4px 8px; border-radius: 999px;
}
.route-badge--green{ background: #22c55e; }



  /* ---------- Screen 7 (Confirmation) ---------- */
.verify-banner{
  background: #53cd4d;
  color: #fff;
  border-radius: 6px;
  padding: .6rem .75rem;
}

.details-panel{
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.details-tabs{
  border-bottom: 1px solid #e5e7eb;
}
.details-tab{
  padding: .5rem .75rem;
  background: #f8fafc;
  border: none;
  font-weight: 600;
  font-size: .9rem;
}
.details-tab.active{
  background: #fff;
  border-bottom: 2px solid var(--brand-primary);
}

.details-list{
  margin: 0;
}
.details-list dt{
  font-weight: 600;
  color: #374151;
}
.details-list dd{
  margin: 0 0 .75rem 0;
  color: #4b5563;
}




#requestSummaryCardData{
  display: none;
}




.form-label{
  font-weight: 400;
}










.text-primary{
  color: var(--brand-primary) !important;
}
