
    /*
    body {
      font-family: 'DM Sans', sans-serif;
      background: linear-gradient(135deg, #1a237e 0%, #283593 60%, #4f46e5 100%);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px;
      color: #fff;
    }*/

     body {
      font-family: 'DM Sans', sans-serif;
     }

    /* ---- LOADING SCREEN ---- */
    #loadingScreen {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeOut { from { opacity: 1; } to { opacity: 0; transform: translateY(-20px); } }
    @keyframes fadeInResult { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

    /* Plane animation */
    .plane-track {
      width: 280px;
      height: 60px;
      position: relative;
      background: rgba(188, 188, 188, 0.247);
      border-radius: 40px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.12);
    }
    .plane-track::before {
      content: '';
      position: absolute;
      left: 0; top: 50%;
      transform: translateY(-50%);
      height: 1px;
      width: 100%;
      border-top: 2px dashed rgb(33 22 146 / 53%);
    }
    .plane-icon {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.6rem;
      animation: flyPlane 2s ease-in-out infinite;
    }
    @keyframes flyPlane {
      0%   { left: 10px; opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 1; }
      100% { left: calc(100% - 40px); opacity: 0; }
    }

    .loading-title {
      font-family: 'Sora', sans-serif;
      font-size: 1.7rem;
      font-weight: 700;
      text-align: center;
    }
    .loading-sub {
      color: #20349a;
      font-size: 0.95rem;
      text-align: center;
    }

    /* TRIP SUMMARY CARD during loading */
    .trip-summary-card {
      background:rgba(35, 53, 191, 0.803);;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 16px;
      padding: 18px 26px;
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: center;
      backdrop-filter: blur(8px);
      max-width: 580px;
      width: 100%;
    }
    .trip-item {
      text-align: center;
    }
    .trip-item-label {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #e2e5ff;
      font-weight: 700;
      font-family: 'Sora', sans-serif;
      margin-bottom: 3px;
    }
    .trip-item-val {
      font-size: 0.98rem;
      font-weight: 600;
      color: #fff;
      font-family: 'Sora', sans-serif;
    }
    .trip-divider {
      color: rgba(255,255,255,0.25);
      font-size: 1.3rem;
      align-self: center;
    }
    .route-display {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Sora', sans-serif;
    }
    .route-code {
      font-size: 1.6rem;
      font-weight: 700;
      color: #fff;
    }
    .route-arrow { font-size: 1.2rem; color: #f59e0b; }

    /* PROGRESS BAR */
    .progress-wrap {
      width: 280px;
      height: 5px;
      background: rgba(255,255,255,0.12);
      border-radius: 10px;
      overflow: hidden;
    }
    .progress-bar {
      height: 100%;
      background: linear-gradient(90deg, #6366f1, #f59e0b);
      border-radius: 10px;
      animation: progress 2s ease-out forwards;
    }
    @keyframes progress { from { width: 0%; } to { width: 100%; } }

    .loading-tips {
      font-size: 0.82rem;
      color: #5564ed;
      text-align: center;
      max-width: 320px;
      line-height: 1.5;
    }

    /* ---- RESULTS SCREEN ---- */
    #resultsScreen {
      display: none;
      width: 100%;
      max-width: 900px;
      animation: fadeInResult 0.6s ease;
    }

    .results-header {
      margin-bottom: 24px;
    }
    .results-header h2 {
      font-family: 'Sora', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .results-subheader {
      color: #111f62;
      font-size: 0.88rem;
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgb(36 38 181 / 83%);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 0.85rem;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      margin-bottom: 20px;
      text-decoration: none;
      transition: background 0.15s;
    }
    .back-btn:hover { background: rgba(255,255,255,0.18); }

    /* Summary bar */
    .summary-bar {
      background: rgb(9 19 38 / 79%);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 16px;
      padding: 16px 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      margin-bottom: 24px;
      backdrop-filter: blur(8px);
    }
    .sb-item { }
    .sb-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.07em; color: #eaecff; font-weight: 700; font-family: 'Sora', sans-serif; }
    .sb-val { font-weight: 600; color: #fff; font-size: 0.96rem; font-family: 'Sora', sans-serif; }
    .sb-sep { color: rgba(255,255,255,0.2); font-size: 1.3rem; }

    /* FLIGHT CARDS */
    .flight-card {
      background: rgba(255,255,255,0.95);
      border-radius: 16px;
      padding: 20px 22px;
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 12px;
      box-shadow: 0 4px 20px rgba(30,58,138,0.15);
      flex-wrap: wrap;
      animation: fadeInResult 0.5s ease both;
      color: #1e293b;
    }

    .airline-logo-wrap {
      width: 58px; height: 58px;
      border-radius: 12px;
      border: 1.5px solid #e2e8f0;
      background: #f8fafc;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      padding: 4px;
    }
    .airline-logo-img {
      width: 100%; height: 100%;
      object-fit: contain;
    }
    .airline-logo-fallback {
      width: 100%; height: 100%;
      border-radius: 10px;
      background: #3b5bdb;
      color: #fff;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      align-items: center;
      justify-content: center;
    }
    .flight-times {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: 220px;
    }
    .time-block { text-align: center; }
    .time-val { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 700; color: #1e293b; }
    .time-code { font-size: 0.75rem; color: #6b7280; font-weight: 500; }

    .flight-line {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      min-width: 80px;
    }
    .fl-duration { font-size: 0.75rem; color: #6b7280; }
    .fl-bar {
      width: 100%;
      height: 2px;
      background: #e2e8f0;
      border-radius: 2px;
      position: relative;
    }
    .fl-bar::before {
      content: '✈';
      position: absolute;
      top: -9px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.85rem;
      color: #3b5bdb;
    }
    .fl-stops { font-size: 0.72rem; color: #94a3b8; }

    .flight-info { min-width: 110px; }
    .airline-name { font-weight: 600; font-size: 0.88rem; color: #374151; }
    .flight-num { font-size: 0.75rem; color: #94a3b8; }

    .flight-price {
      text-align: right;
      min-width: 90px;
    }
    .price-val { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 700; color: #1e3a8a; }
    .price-sub { font-size: 0.73rem; color: #94a3b8; }

    .book-btn {
      background: linear-gradient(135deg, #f59e0b, #f97316);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 10px 20px;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      cursor: pointer;
      transition: all 0.15s;
      white-space: nowrap;
    }
    .book-btn:hover {  background: linear-gradient(135deg, #f5830b, #f97316);
        transform: translateY(-1px); box-shadow: 0 4px 14px #f59e0b44;  color:white; }

    .badge {
      font-size: 0.67rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 20px;
      font-family: 'Sora', sans-serif;
      display: inline-block;
      margin-top: 3px;
    }
    .badge-best { background: #dcfce7; color: #166534; }
    .badge-cheap { background: #fef9c3; color: #854d0e; }
    .badge-fast { background: #dbeafe; color: #1e40af; }

    .no-results {
      text-align: center;
      padding: 40px;
      color: #a5b4fc;
      font-size: 1.1rem;
    }



    .deals-section { padding: 1.5rem 0; }
.deals-intro { margin-bottom: 1.5rem; }
.deals-intro h2 { font-size: 25px; font-weight: 500; color: #0f0f0f; margin: 0 0 8px; }
.deals-intro p { font-size: 14px; color: #525a69; line-height: 1.7; margin: 0; }
.deals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 1.5rem; }
@media (max-width: 520px) { .deals-grid { grid-template-columns: 1fr; } }
.deal-card {
  background: #ffffff;
  border: 0.5px solid rgba(0,0,0,0.15);
  border-radius: var(12px);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 0;
}
.deal-card:hover { border-color: var(rgba(0,0,0,0.30)); }
.deal-left { flex: 1; min-width: 0; }
.deal-dates {     font-size: 13px;
    color: #6b7280;
    margin-bottom: 0px; }
.deal-route { font-size: 17px; font-weight: 500; color: #0f0f0f; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.deal-route .arrow { color: #9ca3af; margin: 0 4px; font-size: 11px; }
.deal-divider { width: 0.5px; background: rgba(0,0,0,0.15); align-self: stretch; margin: 0 14px; flex-shrink: 0; }
.deal-right { text-align: right; min-width: 100px; }
.deal-price { font-size: 17px; font-weight: 600; color: #3b5bdb; line-height: 1.2; }
.deal-type { font-size: 11px; color: #6b7280; margin-top: 2px; }
.deal-btn {
  margin-left: 12px;
  padding: 6px 12px;
  border: 0.5px solid var(rgba(0,0,0,0.30));
  border-radius: var(8px);
  background: transparent;
  color: #0f0f0f;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.deal-btn:hover { background: #f9fafb; }
.disclaimer {
  background: #f9fafb;
  border-radius: var(8px);
  border: 0.5px solid rgba(0,0,0,0.15);
  padding: 14px 16px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.7;
  margin-top: 1rem;
}
.disclaimer strong { font-weight: 500; color: #0f0f0f; }


.newd{
   padding: 6px 10px;margin-left: 23px;
}


	@media only screen and (max-width: 768px) {
   .deal-dates {
    font-size: 11px;  line-height: 12px;
}

.deal-route {
          line-height: 20px;
        font-size: 12px;
        font-weight: 500;
        color: #0f0f0f;
        white-space: unset;
        overflow: unset;
        text-overflow: unset;
    }

.newd{
   padding: 6px 5px;
        font-size: 11px;
        margin-left: 6px;
        border-radius: 48px;
}
.deal-price 
 {
    font-size: 12px; }

    .deal-right {
    text-align: right;
    min-width: 50px;
}


.row {
    padding-right: 10px   !important;
    padding-left: 10px  !important;
}

}

