/* =============================================
   MY TRANSFER — Login & Booking Details
   ============================================= */

/* ===== HERO ===== */
.mt-hero {
  position: relative;
  min-height: 100vh;
  padding: 88px 0 72px;
  overflow: hidden;
  background: var(--dark-blue);
  display: flex;
  align-items: center;
}

.mt-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.40);
}

.mt-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.mt-hero__container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ===== LOGIN CARD ===== */
.mt-login-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mt-login-title {
  margin: 0;
  color: var(--white);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
}

.mt-login-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  line-height: 1.7;
  max-width: 500px;
}

.mt-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  max-width: 520px;
  padding: 32px 28px;
}

.mt-card__title {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

/* ===== FORM ===== */
.mt-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mt-form__group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mt-form__group i {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.mt-form__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-family: var(--font);
}

.mt-form__input::placeholder {
  color: rgba(255, 255, 255, 0.60);
}

.mt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mt-btn:hover { opacity: 0.85; }

.mt-btn--yellow {
  background: var(--yellow);
  color: var(--dark-blue);
}

.mt-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.mt-alert {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  background: rgba(220, 53, 69, 0.20);
  border: 1px solid rgba(220, 53, 69, 0.40);
  color: #ffb3b9;
}

/* =============================================
   BOOKING DETAILS PAGE
   ============================================= */

/* Hero (shorter, just a banner) */
.mt-detail-hero {
  position: relative;
  min-height: 320px;
  padding: 100px 0 48px;
  overflow: hidden;
  background: var(--dark-blue);
  display: flex;
  align-items: flex-end;
}

.mt-detail-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.40);
}

.mt-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
}

.mt-detail-hero__container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
}

.mt-detail-hero__title {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
}

.mt-detail-hero__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

/* ===== DETAIL PAGE BODY ===== */
.mt-detail-page {
  background: #f3f4f6;
  padding: 40px 0 64px;
}

.mt-detail-container {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ===== BOOKING HEADER CARD ===== */
.mt-booking-header {
  background: var(--dark-blue);
  color: var(--white);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.mt-booking-code {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--yellow);
}

.mt-booking-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
  margin-top: 4px;
}

.mt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.mt-badge--unpaid  { background: rgba(220, 53, 69, 0.25);  color: #ff8080; }
.mt-badge--partial { background: rgba(255, 193, 7, 0.25);  color: #ffd04b; }
.mt-badge--paid    { background: rgba(40, 167, 69, 0.25);  color: #6de4a0; }

.mt-logout-btn {
  font-size: 12px;
  padding: 8px 16px;
}

/* ===== INFO GRID ===== */
.mt-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* ===== CARD ===== */
.mt-section-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.mt-section-card__header {
  background: var(--dark-blue);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mt-section-card__header i {
  color: var(--yellow);
  font-size: 15px;
}

.mt-section-card__title {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mt-section-card__body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== INFO ROW ===== */
.mt-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.mt-info-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.mt-info-row__label {
  color: #888;
  font-weight: 500;
  white-space: nowrap;
}

.mt-info-row__value {
  color: var(--dark-blue);
  font-weight: 600;
  text-align: right;
}

/* ===== TRIP SECTION ===== */
.mt-trips {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mt-trip-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.mt-trip-card__header {
  background: var(--mid-blue);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mt-trip-card__header i {
  color: var(--yellow);
  font-size: 15px;
}

.mt-trip-card__title {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
}

.mt-trip-card__shuttle {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
}

.mt-trip-card__body {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.mt-trip-card__flight {
  grid-column: 1 / -1;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.mt-trip-card__extras {
  grid-column: 1 / -1;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

.mt-trip-card__extras-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.mt-extra-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--dark-blue);
  padding: 4px 0;
  border-bottom: 1px solid #f8f8f8;
}

.mt-extra-row:last-child { border-bottom: none; }

/* ===== COSTS CARD ===== */
.mt-cost-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 2px solid var(--dark-blue);
  font-size: 15px;
  font-weight: 800;
  color: var(--dark-blue);
}

/* ===== PAYMENTS TABLE ===== */
.mt-payments-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.mt-payments-table th {
  background: #f3f4f6;
  color: #888;
  font-weight: 600;
  padding: 8px 12px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.mt-payments-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--dark-blue);
}

.mt-payments-table tr:last-child td { border-bottom: none; }

.mt-no-data {
  color: #aaa;
  font-size: 13px;
  font-style: italic;
  padding: 8px 0;
}

/* ===== CTA ===== */
.mt-cta-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .mt-login-title { font-size: 36px; }
  .mt-detail-hero__title { font-size: 34px; }
  .mt-booking-header { flex-direction: column; align-items: flex-start; }
  .mt-trip-card__body { grid-template-columns: 1fr; }
  .mt-trip-card__flight { grid-template-columns: 1fr; }
  .mt-info-grid { grid-template-columns: 1fr; }
}
