/**
 * Home page — Design 1b (desktop + mobile)
 * Matches interactive prototype Design 1b
 */

.page-home,
body.bmga-design-1b,
.travel-search--1b {
  --home-1b-brand: #de2a1f;
  --home-1b-brand-dark: #8f1710;
  --home-1b-ink: #1c1414;
  --home-1b-muted: #59504c;
  --home-1b-muted-2: #6b5f5c;
  --home-1b-muted-3: #6f635f;
  --home-1b-accent-bg: #fbedea;
  --home-1b-dark: #1c1414;
  --home-1b-border: #f0e4df;
  --home-1b-input-border: #eee0dc;
  --home-1b-footer-bg: #faf6f3;
  --home-1b-font-display: "Baloo 2", system-ui, sans-serif;
  --home-1b-font-body: "Inter", system-ui, -apple-system, sans-serif;
  background: #fff;
  color: var(--home-1b-ink);
  font-family: var(--home-1b-font-body);
}

.page-home .home-1b {
  overflow-x: clip;
}

@media (min-width: 992px) {
  .page-home .mobile-only {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .page-home .desktop-only {
    display: none !important;
  }
}

.home-1b__wa-hint {
  display: none !important;
}

.home-1b__price-bar {
  background: var(--home-1b-dark);
  color: #fff;
  overflow: hidden;
}

.home-1b__price-bar-ticker__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

.home-1b__price-bar-ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  white-space: nowrap;
  padding: 9px 16px;
  font: 600 13px var(--home-1b-font-body);
  line-height: 1.45;
  will-change: transform;
  animation: home-1b-price-bar-marquee 32s linear infinite;
}

.home-1b__price-bar-ticker__item {
  display: inline-flex;
  align-items: center;
}

.home-1b__price-bar-ticker__item::after {
  content: "•";
  opacity: 0.55;
  margin-left: 2.25rem;
}

.home-1b__price-bar-ticker__viewport:hover .home-1b__price-bar-ticker__track {
  animation-play-state: paused;
}

@keyframes home-1b-price-bar-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-1b__price-bar-ticker__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .home-1b__price-bar-ticker__track {
    animation: none;
    justify-content: center;
    width: 100%;
  }

  .home-1b__price-bar-ticker__item::after {
    content: " · ";
    opacity: 1;
    margin-left: 0.35rem;
  }

  .home-1b__price-bar-ticker__item:last-child::after {
    content: none;
  }
}

@media (max-width: 991.98px) {
  .home-1b__wa-hint {
    display: none !important;
  }

  .home-1b__price-bar-ticker__track {
    padding: 8px 12px;
    font-size: 11.5px;
    gap: 1.25rem;
  }

  .home-1b__price-bar-ticker__item::after {
    margin-left: 1.25rem;
  }

  .home-1b-hero__mobile-image {
    display: block;
  }

  .home-1b-hero .home-1b-container.home-1b-hero__inner {
    padding: 22px 16px 0;
  }

  .home-1b-hero .home-1b-container:not(.home-1b-hero__inner) {
    padding-left: 0;
    padding-right: 0;
  }

  .home-1b-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    width: 100%;
  }

  .home-1b-hero__copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-column: 1 / -1;
  }

  .home-1b-hero__carousel {
    display: none !important;
  }

  .home-1b-hero__title {
    font-size: 27px !important;
    line-height: 1.2;
    margin-bottom: 10px !important;
    font-weight: 800;
    letter-spacing: -0.01em;
  }

  .home-1b-hero__lead,
  .home-1b-hero__lead--mobile {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
    max-width: none;
    color: var(--home-1b-muted);
  }

  .home-1b-hero__stats {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
  }

  .home-1b-stat {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
  }

  .home-1b-stat__value {
    font-size: 18px;
    line-height: 1.1;
    font-weight: 800;
  }

  .home-1b-stat__label {
    font-size: 10.5px;
    line-height: 1.25;
    white-space: normal;
    width: 100%;
    margin-top: 2px;
    font-weight: 500;
    color: var(--home-1b-muted-2);
  }

  .home-1b-hero-stack .home-1b-search {
    margin-top: 0;
  }

  .home-1b-search {
    margin-top: 0;
  }

  .home-1b-search__inner {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .travel-search--1b .search-card {
    border: 1.5px solid var(--home-1b-border);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    overflow: visible !important;
  }

  .travel-search--1b #travelSearchTabs {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    flex-wrap: unset !important;
    border-bottom: 1.5px solid var(--home-1b-border) !important;
    width: 100%;
  }

  .travel-search--1b #travelSearchTabs .nav-item {
    flex: unset !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .travel-search--1b #travelSearchTabs .nav-item:nth-child(-n+3) {
    grid-column: span 2;
  }

  .travel-search--1b #travelSearchTabs .nav-item:nth-child(4),
  .travel-search--1b #travelSearchTabs .nav-item:nth-child(5) {
    grid-column: span 3;
  }

  .travel-search--1b #travelSearchTabs .nav-item:nth-child(1) .nav-link {
    border-radius: 12px 0 0 0 !important;
  }

  .travel-search--1b #travelSearchTabs .nav-item:nth-child(3) .nav-link {
    border-radius: 0 12px 0 0 !important;
  }

  .travel-search--1b #travelSearchTabs .nav-item:nth-child(2) .nav-link,
  .travel-search--1b #travelSearchTabs .nav-item:nth-child(4) .nav-link,
  .travel-search--1b #travelSearchTabs .nav-item:nth-child(5) .nav-link {
    border-radius: 0 !important;
  }

  .travel-search--1b #travelSearchTabs .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    padding: 12px 4px !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #6d5e5a !important;
    min-height: 0 !important;
    box-shadow: none !important;
    width: 100%;
  }

  .travel-search--1b #travelSearchTabs .nav-link.active,
  .travel-search--1b #travelSearchTabs button.nav-link.active,
  .travel-search--1b #travelSearchTabs .nav-link[aria-selected="true"] {
    background: #de2a1f !important;
    background-color: #de2a1f !important;
    color: #fff !important;
    border-bottom-color: transparent !important;
    font-weight: 700 !important;
  }

  .travel-search--1b .tab-content {
    padding: 16px !important;
  }

  .travel-search--1b .home-1b-flights-note {
    font-size: 11px;
    margin-top: 4px;
  }

  .home-1b-tab-quote {
    gap: 10px;
  }

  .home-1b-tab-quote__field {
    gap: 5px;
  }

  .home-1b-tab-quote__field span {
    font-size: 11.5px;
  }

  .travel-search--1b .tab-content .form-control,
  .travel-search--1b .tab-content .form-select,
  .travel-search--1b .tab-content input[type="text"]:not(.input-number):not(.home-1b-travellers-picker__stepper-input),
  .travel-search--1b .tab-content select {
    padding: 11px 12px !important;
    font-size: 14px !important;
  }

  .travel-search--1b .home-1b-flights-dates .form-control {
    font-size: 13px !important;
  }

  .travel-search--1b .home-1b-tab-quote__grid-2 .form-select {
    font-size: 13px !important;
  }

  .travel-search--1b .home-1b-tab-quote__submit,
  .travel-search--1b .tab-content button[type="submit"] {
    width: 100%;
    padding: 13px !important;
    margin-top: 4px !important;
  }

  .page-home .home-1b-partners {
    margin-top: 24px;
  }

  .home-1b-partners__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-1b-partner-card {
    padding: 16px;
    border-radius: 14px;
  }

  .home-1b-partner-card__eyebrow {
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .home-1b-partner-card__tags {
    gap: 8px;
  }

  .home-1b-tag {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 8px;
  }

  .home-1b-partner-card--accent .home-1b-partner-card__tags {
    margin-bottom: 10px;
  }

  .home-1b-partner-card__text {
    font-size: 12.5px;
    margin-top: 10px;
  }

  .home-1b-partner-card--accent .home-1b-partner-card__text {
    margin-top: 0;
  }

  .page-home .home-1b-packages {
    padding-top: 28px;
  }

  .page-home .home-1b-packages .home-1b-section-head {
    margin-bottom: 14px;
  }

  .page-home .home-1b-steps {
    margin-top: 28px;
  }

  .page-home .home-1b-testimonials {
    padding-top: 28px;
  }

  body.page-home .footer-section.home-1b-footer,
  body.bmga-design-1b .footer-section.home-1b-footer {
    padding: 28px 0 0 !important;
  }

  body.page-home .home-1b-footer .d-lg-none.home-1b-footer__container,
  body.bmga-design-1b .home-1b-footer .d-lg-none.home-1b-footer__container {
    padding-top: 0 !important;
    padding-bottom: 20px !important;
  }

  body.page-home .home-1b-footer .d-lg-none .home-1b-footer__logo-img,
  body.bmga-design-1b .home-1b-footer .d-lg-none .home-1b-footer__logo-img,
  body.page-home .home-1b-footer .d-lg-none .footer-logo-img,
  body.bmga-design-1b .home-1b-footer .d-lg-none .footer-logo-img {
    max-height: 28px;
    margin-bottom: 14px;
  }
}

/* ---- Hero ---- */
.home-1b-hero-stack {
  background: #fff;
}

.home-1b-hero {
  background: #fff;
}

.home-1b-hero__mobile-image {
  display: none;
  position: relative;
  height: 220px;
  overflow: hidden;
}

.home-1b-hero__mobile-image .home-1b-hero__slide,
.home-1b-hero__carousel .home-1b-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.home-1b-hero__mobile-image .home-1b-hero__slide img,
.home-1b-hero__carousel .home-1b-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-1b-hero__mobile-image .home-1b-hero__slide.is-active,
.home-1b-hero__carousel .home-1b-hero__slide.is-active {
  opacity: 1;
}

.home-1b-hero__mobile-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 20, 20, 0) 30%, rgba(28, 20, 20, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.home-1b-hero__dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.home-1b-hero__dot {
  height: 7px;
  border-radius: 5px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  transition: all 0.3s ease;
  cursor: pointer;
}

.home-1b-hero__dot.is-active {
  width: 22px;
  background: #fff;
}

.home-1b-hero__dot:not(.is-active) {
  width: 8px;
}

.home-1b-hero__inner {
  padding: 52px 0 0;
}

.home-1b-hero__grid {
  display: grid;
  gap: 0;
  align-items: center;
  width: 100%;
}

.home-1b-hero__copy {
  min-width: 0;
  width: 100%;
}

.home-1b-hero__title {
  font-family: var(--home-1b-font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1.15;
  color: var(--home-1b-ink);
  margin: 0 0 16px;
}

.home-1b-hero__lead {
  font: 400 16.5px/1.6 var(--home-1b-font-body);
  color: var(--home-1b-muted);
  max-width: 520px;
  margin: 0 0 22px;
}

.home-1b-hero__stats {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
}

.home-1b-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--home-1b-accent-bg);
  border-radius: 10px;
  padding: 12px 16px;
  flex: 1 1 0;
  min-width: 0;
}

.home-1b-stat__value {
  font: 800 22px/1.1 var(--home-1b-font-display);
  color: var(--home-1b-brand);
}

.home-1b-stat__label {
  font: 500 12px/1.25 var(--home-1b-font-body);
  color: var(--home-1b-muted-2);
  margin-top: 2px;
  width: 100%;
}

.home-1b-hero__carousel {
  position: relative;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
}

.home-1b-hero__carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 20, 20, 0) 45%, rgba(28, 20, 20, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.home-1b-hero__carousel .home-1b-hero__dots {
  bottom: 16px;
  gap: 7px;
}

.home-1b-hero__carousel .home-1b-hero__dot {
  height: 8px;
}

@media (min-width: 992px) {
  .home-1b-hero-stack .home-1b-search {
    margin-top: 34px;
  }

  .home-1b-hero__grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 40px;
  }

  .home-1b-hero__copy {
    grid-column: auto;
    width: auto;
    max-width: none;
  }

  .home-1b-hero__title {
    font-size: 38px !important;
    margin-bottom: 16px !important;
  }

  .home-1b-hero__stats {
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
  }

  .home-1b-stat {
    flex: 0 0 auto;
    align-items: flex-start;
    text-align: left;
    min-width: auto;
    padding: 12px 16px;
  }

  .home-1b-stat__label {
    width: auto;
  }
}

/* ---- Search card (Design 1b) ---- */
.home-1b-search .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.travel-search--1b .search-card {
  border: 1.5px solid var(--home-1b-border);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  padding: 0;
  overflow: visible !important;
  background: #fff;
}

.travel-search--1b #travelSearchTabs .nav-link.active,
.travel-search--1b #travelSearchTabs button.nav-link.active,
.travel-search--1b #travelSearchTabs .nav-link[aria-selected="true"] {
  background: #de2a1f !important;
  background-color: #de2a1f !important;
  color: #fff !important;
  border-bottom-color: transparent !important;
}

.travel-search--1b #travelSearchTabs .nav-link i {
  display: none;
}

@media (min-width: 992px) {
  .home-1b-search {
    margin-top: 34px;
  }

  .travel-search--1b #travelSearchTabs {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 !important;
    padding: 0;
    border-bottom: 1.5px solid var(--home-1b-border) !important;
    gap: 0;
    overflow: hidden;
    border-radius: 14.5px 14.5px 0 0;
  }

  .travel-search--1b #travelSearchTabs .nav-item {
    flex: 1;
    margin: 0 !important;
  }

  .travel-search--1b #travelSearchTabs .nav-item .nav-link {
    width: 100%;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #6d5e5a !important;
    font: 700 14px var(--home-1b-font-body) !important;
    padding: 15px 8px !important;
    box-shadow: none !important;
    text-align: center;
    white-space: nowrap;
    margin: 0 !important;
  }

  .travel-search--1b #travelSearchTabs .nav-item:first-child .nav-link.active {
    border-radius: 14.5px 0 0 0 !important;
  }

  .travel-search--1b #travelSearchTabs .nav-item:last-child .nav-link.active {
    border-radius: 0 14.5px 0 0 !important;
  }
}

.travel-search--1b .tab-content {
  padding: 22px 24px;
  overflow: visible !important;
  position: relative;
  z-index: 2;
}

.travel-search--1b .tab-content .form-label,
.travel-search--1b .tab-content label:not(.form-check-label) {
  font: 600 12px var(--home-1b-font-body);
  color: var(--home-1b-muted-2);
}

.travel-search--1b .tab-content .form-control,
.travel-search--1b .tab-content .form-select,
.travel-search--1b .tab-content input[type="text"]:not(.input-number):not(.home-1b-travellers-picker__stepper-input),
.travel-search--1b .tab-content input[type="date"],
.travel-search--1b .tab-content select {
  border: 1.5px solid var(--home-1b-input-border) !important;
  border-radius: 8px !important;
  padding: 11px 13px !important;
  font: 500 14px var(--home-1b-font-body) !important;
  box-shadow: none !important;
}

.travel-search--1b .tab-content .btn-primary,
.travel-search--1b .tab-content .btn-danger,
.travel-search--1b .tab-content button[type="submit"] {
  background: var(--home-1b-brand) !important;
  border-color: var(--home-1b-brand) !important;
  color: #fff !important;
  font: 700 14px var(--home-1b-font-body) !important;
  border-radius: 8px !important;
  padding: 12px 22px !important;
  white-space: nowrap;
}

.travel-search--1b .home-1b-flights-note {
  font: 500 12px var(--home-1b-font-body);
  color: #6f635f;
  margin: 12px 0 0;
}

/* ---- Partner cards ---- */
.home-1b-partners {
  margin-top: 44px;
}

.home-1b-partners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.home-1b-partner-card {
  border: 1.5px solid var(--home-1b-border);
  border-radius: 16px;
  padding: 24px;
}

.home-1b-partner-card--accent {
  background: var(--home-1b-accent-bg);
}

.home-1b-partner-card__eyebrow {
  font: 700 13px var(--home-1b-font-body);
  color: var(--home-1b-muted-3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.home-1b-partner-card--accent .home-1b-partner-card__eyebrow {
  color: var(--home-1b-brand-dark);
}

.home-1b-partner-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-1b-tag {
  font: 700 14px var(--home-1b-font-display);
  background: var(--home-1b-accent-bg);
  color: var(--home-1b-brand-dark);
  padding: 8px 16px;
  border-radius: 10px;
}

.home-1b-tag--light {
  background: #fff;
  color: var(--home-1b-ink);
}

.home-1b-partner-card__text {
  font: 400 13.5px/1.5 var(--home-1b-font-body);
  color: var(--home-1b-muted-2);
  margin: 14px 0 0;
}

.home-1b-partner-card--accent .home-1b-partner-card__text {
  color: #592018;
  margin-top: 0;
}

.home-1b-partner-card--accent .home-1b-partner-card__text a {
  color: #8f1710;
}

.home-1b-partner-card__text a {
  color: var(--home-1b-brand-dark);
  font-weight: 600;
  text-decoration: none;
}

/* ---- Holiday packages ---- */
.home-1b-packages {
  padding-top: 44px;
}

.home-1b-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

.home-1b-section-head h2 {
  font: 700 26px var(--home-1b-font-display);
  color: var(--home-1b-ink);
  margin: 0;
}

.home-1b-section-head a {
  font: 600 14px var(--home-1b-font-body);
  color: var(--home-1b-brand);
  text-decoration: none;
  white-space: nowrap;
}

.home-1b-section-head__copy {
  min-width: 0;
}

.home-1b-section-head__lead {
  margin: 6px 0 0;
  max-width: 560px;
  font: 400 14px/1.5 var(--home-1b-font-body);
  color: var(--home-1b-muted-2);
}

.home-1b-section-head__lead a {
  font-weight: 600;
  white-space: normal;
}

.home-1b-section-head__link {
  flex-shrink: 0;
}

.home-1b-destination-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.home-1b-destination-card__tag {
  display: inline-block;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--home-1b-accent-bg);
  color: var(--home-1b-brand-dark);
  font: 600 10.5px/1.2 var(--home-1b-font-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-1b-destination-card__cta {
  background: transparent !important;
  color: var(--home-1b-brand) !important;
  border: 1.5px solid var(--home-1b-brand);
}

.home-1b-package-card__link:hover .home-1b-destination-card__cta,
.home-1b-package-card__link:focus .home-1b-destination-card__cta {
  background: var(--home-1b-brand) !important;
  color: #fff !important;
}

.featured-destination-holidays-note {
  margin-top: 24px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--home-1b-accent-bg);
  border: 1px solid #f0ddd8;
}

.featured-destination-holidays-note p {
  margin: 0;
  font: 500 13.5px/1.55 var(--home-1b-font-body);
  color: var(--home-1b-muted-2);
}

.featured-destination-holidays-note a {
  color: var(--home-1b-brand);
  font-weight: 600;
  text-decoration: none;
}

.featured-destination-holidays-note a:hover {
  text-decoration: underline;
}

.home-1b-packages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.home-1b-package-card {
  border: 1.5px solid var(--home-1b-border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home-1b-package-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.home-1b-package-card__link:hover {
  color: inherit;
}

@media (hover: hover) {
  .home-1b-package-card__link:hover .home-1b-package-card__cta {
    background: var(--home-1b-brand);
    border-color: var(--home-1b-brand);
    color: #fff;
  }
}

.home-1b-package-card__media {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.home-1b-package-card__media .home-1b-package-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-1b-package-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font: 700 11px var(--home-1b-font-body);
  padding: 4px 9px;
  border-radius: 6px;
}

.home-1b-package-card__body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-1b-package-card__title {
  font: 700 15px var(--home-1b-font-display);
  color: var(--home-1b-ink);
}

.home-1b-package-card__subtitle {
  font: 500 12.5px var(--home-1b-font-body);
  color: var(--home-1b-muted-3);
  margin: 3px 0 10px;
}

.home-1b-package-card__cta {
  display: inline-block;
  margin-top: auto;
  font: 700 12.5px var(--home-1b-font-body);
  color: var(--home-1b-brand);
  background: #fff;
  border: 1.5px solid var(--home-1b-border);
  padding: 6px 12px;
  border-radius: 7px;
  text-decoration: none;
  align-self: flex-start;
}

.home-1b-packages__mobile-link {
  display: none;
  text-align: center;
  margin-top: 14px;
  font: 600 13px var(--home-1b-font-body);
  color: var(--home-1b-brand);
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .home-1b-packages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .home-1b-section-head h2 {
    font-size: 20px;
  }

  .home-1b-section-head a {
    display: none;
  }

  .home-1b-packages__mobile-link {
    display: block;
  }

  .home-1b-package-card {
    border-radius: 12px;
  }

  .home-1b-package-card__media {
    height: 80px;
  }

  .home-1b-package-card__badge {
    top: 8px;
    left: 8px;
    font-size: 9.5px;
    padding: 3px 7px;
    border-radius: 5px;
  }

  .home-1b-package-card__body {
    padding: 10px;
  }

  .home-1b-package-card__title {
    font-size: 13px;
  }

  .home-1b-package-card__subtitle {
    display: none;
  }

  .home-1b-package-card__cta {
    margin-top: 6px;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 6px;
  }

  .home-1b-packages {
    padding-top: 28px;
  }
}

/* ---- Three steps ---- */
.home-1b-steps {
  margin-top: 44px;
  background: var(--home-1b-dark);
  border-radius: 20px;
  padding: 40px;
}

.home-1b-steps h2 {
  font: 700 24px var(--home-1b-font-display);
  color: #fff;
  margin: 0 0 28px;
}

.home-1b-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-1b-step__num {
  font: 800 30px var(--home-1b-font-display);
  color: var(--home-1b-brand);
  margin-bottom: 8px;
}

.home-1b-step__title {
  font: 700 15.5px var(--home-1b-font-body);
  color: #fff;
  margin-bottom: 6px;
}

.home-1b-step__text {
  font: 400 13.5px/1.5 var(--home-1b-font-body);
  color: #b5a29d;
  margin: 0;
}

@media (max-width: 991.98px) {
  .home-1b-steps {
    margin: 28px 0 0;
    border-radius: 16px;
    padding: 22px 16px;
  }

  .home-1b-steps h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .home-1b-steps__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-1b-step__num {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .home-1b-step__title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .home-1b-step__text {
    font-size: 12.5px;
  }
}

/* ---- Testimonials ---- */
.home-1b-testimonials {
  padding-top: 44px;
}

.home-1b-testimonials h2 {
  font: 700 24px var(--home-1b-font-display);
  color: var(--home-1b-ink);
  margin: 0 0 22px;
}

.home-1b-testimonials__carousel {
  --testimonial-gap: 18px;
}

.home-1b-testimonials__viewport {
  overflow: hidden;
  width: 100%;
}

.home-1b-testimonials__track {
  display: flex;
  gap: var(--testimonial-gap);
  transition: transform 0.55s ease;
  will-change: transform;
}

.home-1b-testimonial {
  flex: 0 0 var(--testimonial-item-width, 100%);
  min-width: 0;
  background: var(--home-1b-accent-bg);
  border-radius: 14px;
  padding: 20px;
}

.home-1b-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.home-1b-testimonials__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d8d0cd;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-1b-testimonials__dot.is-active {
  background: var(--home-1b-brand);
  transform: scale(1.15);
}

.home-1b-testimonial__stars {
  color: var(--home-1b-brand);
  font: 15px var(--home-1b-font-body);
  margin-bottom: 8px;
}

.home-1b-testimonial__quote {
  font: 400 13.5px/1.6 var(--home-1b-font-body);
  color: #3a302e;
  margin: 0;
}

.home-1b-testimonial__author {
  font: 600 12.5px var(--home-1b-font-body);
  color: var(--home-1b-muted-3);
  margin-top: 10px;
}

@media (max-width: 991.98px) {
  .home-1b-testimonials__carousel {
    --testimonial-gap: 12px;
  }

  .home-1b-testimonials {
    padding-top: 28px;
  }

  .home-1b-testimonials h2 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .home-1b-testimonial {
    border-radius: 12px;
    padding: 16px;
  }

  .home-1b-testimonial__stars {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .home-1b-testimonial__quote {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .home-1b-testimonial__author {
    font-size: 11.5px;
    margin-top: 8px;
  }

  .home-1b-testimonial--desktop-only {
    display: none;
  }

  .page-home .home-1b-testimonials {
    padding-bottom: 0;
  }
}

/* ---- Quote section ---- */
.page-home .home-quote-section {
  padding: 44px 0;
}

.page-home .home-quote-section .container {
  max-width: var(--bmga-container-wide, 1352px);
}

body.page-home .sticky-icon,
body.bmga-design-1b .sticky-icon {
  display: none !important;
}

body.page-home .footer-section.home-1b-footer,
body.bmga-design-1b .footer-section.home-1b-footer {
  margin-top: 0 !important;
}

@media (max-width: 991.98px) {
  body.page-home .footer-section.home-1b-footer,
  body.bmga-design-1b .footer-section.home-1b-footer {
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }

  body.page-home .wa-widget,
  body.bmga-design-1b .wa-widget {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: 16px;
  }

  body.page-home .back-to-top,
  body.bmga-design-1b .back-to-top {
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
}

/* ---- Typography helpers ---- */
.page-home h1.home-1b-hero__title,
.page-home h2,
.page-home .home-1b-stat__value,
.page-home .home-1b-tag,
.page-home .home-1b-package-card__title {
  font-family: var(--home-1b-font-display);
}

.page-home h1.home-1b-hero__title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ---- Flash alerts ---- */
.home-1b-alert {
  padding: 12px 16px;
  font: 600 14px var(--home-1b-font-body);
  text-align: center;
}

.home-1b-alert--success {
  background: #e8f7ee;
  color: #166534;
}

.home-1b-alert--error {
  background: #fdecec;
  color: #991b1b;
}


/* ---- Tab quote forms (Design 1b — prototype layout) ---- */
.home-1b-tab-quote {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-1b-tab-quote__grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: end;
}

.home-1b-tab-quote__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.home-1b-tab-quote__field:has(.dropdown.show),
.home-1b-tab-quote__field:has(.dropdown-menu.show) {
  z-index: 60;
}

.home-1b-tab-quote__field span {
  font: 600 12px var(--home-1b-font-body);
  color: var(--home-1b-muted-2);
}

.home-1b-tab-quote__field--grow {
  min-width: 0;
}

.home-1b-tab-quote__submit {
  background: var(--home-1b-brand);
  color: #fff;
  border: none;
  font: 700 14px var(--home-1b-font-body);
  padding: 12px 22px;
  border-radius: 8px;
  white-space: nowrap;
  cursor: pointer;
  height: fit-content;
}

.home-1b-tab-quote__submit:disabled {
  opacity: 1;
  cursor: not-allowed;
}

/* Flights row (desktop inline) */
.home-1b-journey-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
  padding: 3px;
  border-radius: 999px;
  border: 1.5px solid var(--home-1b-border, #f0e4df);
  background: #fff;
}

.home-1b-journey-toggle__option {
  margin: 0;
  cursor: pointer;
}

.home-1b-journey-toggle__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.home-1b-journey-toggle__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font: 600 12.5px var(--home-1b-font-body, "Inter", sans-serif);
  color: var(--home-1b-muted-2, #6b5f5c);
  transition: background 0.2s ease, color 0.2s ease;
}

.home-1b-journey-toggle__input:checked + .home-1b-journey-toggle__label {
  background: var(--home-1b-brand, #de2a1f);
  color: #fff;
}

.home-1b-tab-quote__row--flights {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.home-1b-tab-quote__row--flights.oneway {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr) minmax(0, 0.85fr) minmax(0, 1fr) auto;
}

.home-1b-tab-quote__row--flights > .home-1b-tab-quote__submit {
  align-self: end;
  min-height: 44px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.home-1b-flights-dates {
  display: contents;
}

.home-1b-flights-dates.oneway .home-1b-tab-quote__field--return {
  display: none !important;
}

.home-1b-flights-dates.roundtrip .home-1b-tab-quote__field--return {
  display: block;
}

/* Flights — travellers & cabin class (Design 1b) */
.travel-search--1b .home-1b-travellers-display.form-control {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 44px;
  height: auto;
  padding: 8px 13px !important;
  cursor: pointer;
  background: #fff;
  line-height: 1.25;
}

.home-1b-travellers-display__content {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}

.home-1b-travellers-display__total {
  display: block;
  font: 600 14px/1.25 var(--home-1b-font-body);
  color: var(--home-1b-text, #1a1412);
}

.home-1b-travellers-display__unit {
  font-weight: 500;
}

.home-1b-travellers-display__breakdown {
  display: block;
  font: 500 11.5px/1.3 var(--home-1b-font-body);
  color: var(--home-1b-muted-2, #6b5f5c);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-1b-travellers-display__chevron {
  flex-shrink: 0;
  font-size: 11px;
  color: var(--home-1b-muted-2, #6b5f5c);
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.travellers-dropdownhs-field [data-bs-toggle="dropdown"][aria-expanded="true"] .home-1b-travellers-display__chevron {
  transform: rotate(180deg);
}

/* ---- Holiday filter (Design 1b search card) ---- */
.home-1b-holiday-filter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-1b-holiday-filter__title {
  margin: 0;
  font: 500 16px var(--home-1b-font-body);
  color: var(--home-1b-ink);
}

.home-1b-holiday-filter__grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-1b-holiday-filter__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  min-width: 0;
}

.home-1b-holiday-filter__field span {
  font: 600 12px var(--home-1b-font-body);
  color: var(--home-1b-muted-2);
}

.home-1b-holiday-filter__submit {
  width: 100%;
  margin-top: 4px;
  background: var(--home-1b-brand) !important;
  border: none !important;
  color: #fff !important;
  font: 700 14px var(--home-1b-font-body);
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
}

.travel-search--1b #holidays-pane .home-1b-holiday-filter__field .form-control,
.travel-search--1b #holidays-pane .home-1b-holiday-filter__field .form-select {
  border: 1.5px solid var(--home-1b-input-border) !important;
  border-radius: 8px !important;
  padding: 11px 13px !important;
  font: 500 14px var(--home-1b-font-body) !important;
  box-shadow: none !important;
  width: 100%;
}

@media (min-width: 992px) {
  .home-1b-holiday-filter__title {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .home-1b-holiday-filter__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
  }

  .home-1b-holiday-filter__submit {
    align-self: stretch;
  }
}

@media (min-width: 992px) {
  .home-1b-tab-quote--hotels:not(.home-1b-tab-quote--stacked) {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .home-1b-tab-quote__row--hotels-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 12px;
    align-items: end;
  }

  .home-1b-tab-quote__row--hotels-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr auto;
    gap: 12px;
    align-items: end;
  }

  .home-1b-tab-quote--hotels:not(.home-1b-tab-quote--stacked) .home-1b-tab-quote__submit {
    justify-self: end;
    align-self: end;
  }

  .home-1b-tab-quote--cars:not(.home-1b-tab-quote--stacked) {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .home-1b-tab-quote__row--cars-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 12px;
    align-items: end;
  }

  .home-1b-tab-quote__row--cars-bottom {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr auto;
    gap: 12px;
    align-items: end;
  }

  .home-1b-tab-quote--cars:not(.home-1b-tab-quote--stacked) .home-1b-tab-quote__submit {
    justify-self: end;
    align-self: end;
  }

  .home-1b-tab-quote--attractions:not(.home-1b-tab-quote--stacked) {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .home-1b-tab-quote__row--attractions-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 12px;
    align-items: end;
  }

  .home-1b-tab-quote__row--attractions-bottom {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr auto;
    gap: 12px;
    align-items: end;
  }

  .home-1b-tab-quote--attractions:not(.home-1b-tab-quote--stacked) .home-1b-tab-quote__submit {
    justify-self: end;
    align-self: end;
  }

  .home-1b-tab-quote--holidays:not(.home-1b-tab-quote--stacked) {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .home-1b-tab-quote__row--holidays-top,
  .home-1b-tab-quote__row--holidays-middle {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 12px;
    align-items: end;
  }

  .home-1b-tab-quote__row--holidays-bottom {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr auto;
    gap: 12px;
    align-items: end;
  }

  .home-1b-tab-quote--holidays:not(.home-1b-tab-quote--stacked) .home-1b-tab-quote__submit {
    justify-self: end;
    align-self: end;
  }
}

@media (max-width: 991.98px) {
  .home-1b-tab-quote__row--hotels-top,
  .home-1b-tab-quote__row--hotels-bottom,
  .home-1b-tab-quote__row--cars-top,
  .home-1b-tab-quote__row--cars-bottom,
  .home-1b-tab-quote__row--attractions-top,
  .home-1b-tab-quote__row--attractions-bottom,
  .home-1b-tab-quote__row--holidays-top,
  .home-1b-tab-quote__row--holidays-middle,
  .home-1b-tab-quote__row--holidays-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .home-1b-tab-quote--hotels:not(.home-1b-tab-quote--stacked) .home-1b-tab-quote__submit,
  .home-1b-tab-quote--cars:not(.home-1b-tab-quote--stacked) .home-1b-tab-quote__submit,
  .home-1b-tab-quote--attractions:not(.home-1b-tab-quote--stacked) .home-1b-tab-quote__submit,
  .home-1b-tab-quote--holidays:not(.home-1b-tab-quote--stacked) .home-1b-tab-quote__submit {
    width: 100%;
  }

  .home-1b-tab-quote__row--flights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .home-1b-flights-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .home-1b-flights-dates.oneway {
    grid-template-columns: 1fr;
  }

  .home-1b-flights-dates.oneway .home-1b-tab-quote__field--return {
    display: none !important;
  }

  .home-1b-tab-quote__field span {
    font-size: 11.5px;
  }

  .home-1b-tab-quote__submit {
    width: 100%;
    padding: 13px;
    margin-top: 4px;
  }
}


/* ---- Packages empty state ---- */
.home-1b-packages__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 16px;
  font: 400 14px var(--home-1b-font-body);
  color: var(--home-1b-muted-3);
  border: 1.5px dashed var(--home-1b-border);
  border-radius: 14px;
  margin: 0;
}

/* ---- Plan Your Perfect Getaway (quote form 1b) ---- */
.page-home .home-1b-quote-wrap {
  padding: 44px 0 56px;
  background: #fff;
}

.page-home .home-1b-quote-wrap .quote-section:not(.quote-section--1b) .quote-section__card {
  border-radius: 16px;
  overflow: hidden;
}

.page-home .home-1b-quote-wrap .quote-section:not(.quote-section--1b) .quote-section__header--1b,
.page-home .home-1b-quote-wrap .quote-section:not(.quote-section--1b) .modal-header {
  background: #fff;
}

.page-home .quote-section--1b .quote-section__card {
  border: 1.5px solid var(--home-1b-border) !important;
  border-radius: 16px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05) !important;
  overflow: hidden;
  background: #fff;
}

.page-home .quote-section--1b .quote-section__header--1b {
  padding: 28px 24px 12px !important;
  background: #fff;
}

.page-home .quote-section__title--1b {
  font: 700 26px var(--home-1b-font-display);
  color: var(--home-1b-ink);
}

.page-home .quote-section__subtitle--1b {
  font: 400 14px var(--home-1b-font-body);
  color: var(--home-1b-muted-3);
  max-width: 520px;
  margin: 0 auto;
}

.page-home .quote-section--1b .quote-section__body--1b {
  padding: 0 24px 28px !important;
  box-shadow: none !important;
}

.page-home .quote-section--1b .quote-service-tabs--1b {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0 !important;
  margin: 0 0 0 !important;
  padding: 0;
  border-bottom: 1.5px solid var(--home-1b-border);
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.page-home .quote-section--1b .quote-service-tabs--1b .tab-btn {
  flex: 1 1 auto;
  min-width: 0;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #6d5e5a !important;
  font: 700 13px var(--home-1b-font-body) !important;
  padding: 14px 8px !important;
  box-shadow: none !important;
}

.page-home .quote-section--1b .quote-service-tabs--1b .tab-btn.active,
.page-home .quote-section--1b .quote-service-tabs--1b .tab-btn:hover {
  background: var(--home-1b-brand) !important;
  color: #fff !important;
}

.page-home .quote-section--1b #quote-modal .section-heading {
  font: 700 13px var(--home-1b-font-body);
  color: var(--home-1b-muted-2);
  border: none;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.page-home .quote-section--1b .form-label {
  font: 600 12px var(--home-1b-font-body);
  color: var(--home-1b-muted-2);
}

.page-home .quote-section--1b .form-control,
.page-home .quote-section--1b .form-select {
  border: 1.5px solid var(--home-1b-input-border) !important;
  border-radius: 8px !important;
  padding: 11px 13px !important;
  font: 500 14px var(--home-1b-font-body) !important;
  box-shadow: none !important;
}

.page-home .quote-section--1b .quote-section__submit--1b {
  background: var(--home-1b-brand) !important;
  border-color: var(--home-1b-brand) !important;
  font: 700 14px var(--home-1b-font-body) !important;
  border-radius: 8px !important;
  padding: 12px 28px !important;
  min-width: 200px;
}

@media (max-width: 991.98px) {
  .page-home .home-1b-quote-wrap {
    padding: 28px 0 calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .page-home .home-1b-quote-wrap .home-1b-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-home .quote-section--1b .quote-service-tabs--1b {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }

  .page-home .quote-section--1b .quote-service-tabs--1b .tab-btn {
    font-size: 12px !important;
    padding: 12px 4px !important;
  }

  .page-home .quote-section__title--1b {
    font-size: 20px;
  }

  .page-home .quote-section--1b .quote-section__shell {
    padding: 0;
  }

  .page-home .quote-section--1b .quote-section__header--1b {
    padding: 22px 16px 10px !important;
  }

  .page-home .quote-section--1b .quote-section__body--1b {
    padding: 0 16px 22px !important;
  }

  .page-home .quote-section--1b .quote-section__submit--1b {
    width: 100%;
    min-width: 0;
  }

  .page-home .quote-section--1b #quote-modal .row.g-3 > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .page-home .quote-section--1b .form-control,
  .page-home .quote-section--1b .form-select {
    min-height: 44px;
  }
}

@media (max-width: 767.98px) {
  .page-home .quote-section--1b .quote-service-tabs--1b .tab-btn {
    font-size: 11px !important;
  }
}

/* ---- Legacy banner-form overrides on Design 1b search (all pages) ---- */
.travel-search--1b .banner-form .nav li,
.travel-search--1b #travelSearchTabs .nav-item {
  margin: 0 !important;
}

.travel-search--1b .banner-form .nav li .nav-link,
.travel-search--1b #travelSearchTabs .nav-link {
  border-radius: 0 !important;
}

.travel-search--1b .home-1b-flights-form .form-item .form-control,
.travel-search--1b #flights-pane .home-1b-flights-form .form-item .form-control {
  min-height: 0;
  width: 100%;
}

.travel-search--1b .home-1b-tab-quote__field .form-item,
.travel-search--1b #flights-pane .home-1b-tab-quote__field .form-item {
  margin: 0;
  padding: 0 !important;
}

.travel-search--1b .home-1b-tab-quote__submit.search-btn:disabled,
.travel-search--1b #flights-pane .home-1b-tab-quote__submit.search-btn:disabled {
  background: var(--home-1b-brand) !important;
  background-color: #de2a1f !important;
  border-color: var(--home-1b-brand) !important;
  color: #fff !important;
  opacity: 1 !important;
  cursor: not-allowed;
}

/* ---- Desktop hero stats placement ---- */
@media (min-width: 992px) {
  .home-1b-hero__inner {
    padding-top: 52px;
  }

  .page-home .home-1b-search,
  .page-home .home-1b-hero-stack .home-1b-search {
    margin-top: 34px;
  }
}

/* Fix double/multiple arrows on select dropdowns in mobile view */
#quote-modal .form-select,
.quote-section .form-select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
    padding-right: 2.25rem !important;
}


.form-select-wrapper::after {
    display: none !important;
}
