/* MOBILE ONLY */
@media (min-width: 768px) {
  #mobileModal {
    display: none !important;
  }
}

/* BACKDROP */
.mobileModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(3px);
}

/* CARD */
.modalCard {
  background: #fff;
  width: 100%;
  padding: 20px;
  border-radius: 20px 20px 0 0;
  animation: slideUp 0.35s ease;
  position: relative;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.closeModal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  border: none;
  background: none;
}

/* Yellow Title Bar */
.mm-title-bar {
  background: #bb1b37;
  padding: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 15px;
  color: #fff;
}
.mm-title-bar img {
  width: 30px;
  margin-right: 10px;
}
/* Plane + Airline Logo */
.mm-logo-wrap {
  text-align: center;
}

.mm-plane-img {
  width: 170px;
}

.mm-airline-logo {
  width: auto;
}

/* Grid Buttons */
.mm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.mm-grid a {
  background: #bb1b37;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}

/* Agent */
.mm-agent-wrap {
  text-align: center;
  margin: 15px 0;
}

.mm-agent-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid red;
}

/* Status Text */
.mm-no-hold {
  text-align: center;
  font-weight: 600;
  margin-top: 5px;
}

.mm-click-call {
  text-align: center;
  color: #d60000;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TFN Button */
.mm-tfn-btn {
  background: #bb1b37;
  padding: 18px;
  border-radius: 50px;
  text-align: center;
  display: block;
  width: 90%;
  margin: 0 auto;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.35);
  color: #fff;
}

.mm-tfn-number {
  font-size: 22px;
  font-weight: 700;
}

/* Main Banner Container */
/* MOBILE ONLY */
@media (min-width: 768px) {
  #mobileBanner {
    display: none !important;
  }
}

/* Whole Section */
.mobileBanner {
  padding: 15px;
  margin-top: 15px;
  background: #fff;
}

/* Title Bar */
.mb-title {
  background: #bb1b37;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
}

/* Airline Logo */
.mb-logo-wrap {
  text-align: center;
  margin: 15px 0;
  width: 100%;
  height: 300px;
}

.mb-airline-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Grid Buttons */
.mb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.mb-grid a {
  background: #bb1b37;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

/* Plane Image */
.mb-plane-wrap {
  text-align: center;
  margin: 20px 0;
}
.mb-plane-img {
  width: 100%;
}

/* Booking Title */
.mb-booking-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

/* Benefits Row */
.mb-benefits {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #000;
  font-size: 14px;
}

/* Divider */
.mb-divider {
  margin: 20px 0;
}

/* Agent Image */
.mb-agent-wrap {
  text-align: center;
}
.mb-agent-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid red;
}

/* No Hold Text */
.mb-no-hold {
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  color: #c10909;
}
.mb-click-call {
  text-align: center;
  color: #c10909;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Big TFN Button */
.mb-tfn-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #bb1b37;
  padding: 18px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 90%;
}
.mb-tfn-number {
  font-size: 22px;
  font-weight: 700;
}

/* Description */
.mb-description {
  text-align: center;
  font-size: 14px;
  padding: 0 10px;
  line-height: 1.4;
  color: #000;
}
