/* =========================================================
   B2C Facilities page — Union Travel Center
   Icon-only card design (no images)
   ========================================================= */

/* ── Facilities section ── */

.b2b-facilities__grid { 
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}


.b2c-facilities {
  padding: 90px 0 70px;
}

.b2c-facilities__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* ── Icon-only card ── */
.b2c-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f8fafc;
  border: 1px solid #eef0f5;
  border-radius: 18px;
  padding: 38px 22px 32px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
}

.b2c-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(7, 35, 93, 0.10);
  background: #fff;
}

.b2c-card:focus-visible {
  outline: 2px solid #06a700;
  outline-offset: 3px;
}

/* ── Circular gradient icon ── */
.b2c-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(150deg, #06a700 0%, #0fa56a 50%, #0d9b7a 100%);
  color: #fff;
  font-size: 28px;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(6, 167, 0, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.b2c-card:hover .b2c-card__icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(6, 167, 0, 0.30);
}

/* ── Card text ── */
.b2c-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #07235D;
  margin: 0 0 10px;
  line-height: 1.3;
}

.b2c-card__text {
  color: #6c757d;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
  max-width: 220px;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .b2c-facilities__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .b2c-facilities__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .b2c-facilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .b2c-card {
    padding: 30px 18px 26px;
  }

  .b2c-card__icon {
    width: 62px;
    height: 62px;
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .b2c-facilities {
    padding: 60px 0 50px;
  }

  .b2c-facilities__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Why Travel With Us section
   ========================================================= */

.b2c-why-us {
  padding: 80px 0 90px;
  background: #f8fafc;
}

.b2c-why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}

.b2c-why-us__content {
  position: sticky;
  top: 120px;
}

.b2c-why-us__content .svc-section__tag {
  display: inline-block;
}

.b2c-why-us__content .svc-section__title {
  text-align: left;
  margin-top: 8px;
}

.b2c-why-us__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.b2c-why-us__card {
  background: #fff;
  border: 1px solid #eef0f5;
  border-radius: 16px;
  padding: 30px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.b2c-why-us__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(7, 35, 93, 0.08);
}

/* Last card spans full width if odd number */
.b2c-why-us__card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: start;
}

.b2c-why-us__card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(150deg, #06a700 0%, #0fa56a 50%, #0d9b7a 100%);
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
}

.b2c-why-us__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #07235D;
  margin: 0 0 8px;
  line-height: 1.3;
}

.b2c-why-us__card-text {
  color: #6c757d;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

/* ── Why Us responsive ── */
@media (max-width: 991px) {
  .b2c-why-us__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .b2c-why-us__content {
    position: static;
  }

  .b2c-why-us__content .svc-section__title {
    text-align: center;
  }

  .b2c-why-us__content .svc-section__tag {
    display: block;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .b2c-why-us {
    padding: 60px 0;
  }

  .b2c-why-us__cards {
    grid-template-columns: 1fr;
  }

  .b2c-why-us__card:last-child:nth-child(odd) {
    max-width: 100%;
  }
}

/* =========================================================
   Emotional Promise section
   ========================================================= */

.b2c-promise {
  padding: 80px 0 90px;
  background: linear-gradient(150deg, #07235D 0%, #0d3a8a 60%, #1a5cb8 100%);
  text-align: center;
}

.b2c-promise__inner {
  max-width: 700px;
  margin: 0 auto;
}

.b2c-promise__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 28px;
}

.b2c-promise__title {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
}

.b2c-promise__title span {
  color: #9fe8a8;
}

.b2c-promise__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 24px;
  line-height: 1.5;
}

.b2c-promise__divider {
  width: 60px;
  height: 3px;
  background: #9fe8a8;
  border-radius: 2px;
  margin: 0 auto 24px;
}

.b2c-promise__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 575px) {
  .b2c-promise {
    padding: 60px 0;
  }

  .b2c-promise__title {
    font-size: 24px;
  }

  .b2c-promise__subtitle {
    font-size: 15px;
  }
}

/* =========================================================
   B2B Partner Trust section (two-column)
   ========================================================= */

.b2b-trust {
  padding: 80px 0 90px;
  background: #f8fafc;
}

.b2b-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.b2b-trust__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.b2b-trust__card {
  background: #fff;
  border: 1px solid #eef0f5;
  border-radius: 18px;
  padding: 32px 28px;
}

.b2b-trust__card--highlight {
  border-left: 4px solid #07235D;
  background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
}

.b2b-trust__card--large {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(150deg, #07235D 0%, #0d3a8a 60%, #1a5cb8 100%);
  color: #fff;
  border: none;
}

.b2b-trust__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(150deg, #07235D 0%, #1a5cb8 100%);
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
}

.b2b-trust__card--large .b2b-trust__card-icon {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.b2b-trust__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #07235D;
  margin: 0 0 12px;
  line-height: 1.3;
}

.b2b-trust__card--large .b2b-trust__card-title {
  color: #fff;
}

.b2b-trust__card-text {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 10px;
}

.b2b-trust__card-text:last-child {
  margin-bottom: 0;
}

.b2b-trust__card--large .b2b-trust__card-text {
  color: rgba(255, 255, 255, 0.82);
}

.b2b-trust__card-cta {
  margin-top: 14px;
  font-weight: 700;
  color: #9fe8a8 !important;
  font-size: 15px !important;
}

@media (max-width: 767px) {
  .b2b-trust__grid {
    grid-template-columns: 1fr;
  }
}

/* ── B2B Contact CTA ── */
.b2b-contact {
  padding: 80px 0;
  background: #f8f9fb;
}

.b2b-contact__inner {
  text-align: center;
}

.b2b-contact__head-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(150deg, #06a700, #0d9b7a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.b2b-contact__head-icon i {
  font-size: 26px;
  color: #fff;
}

.b2b-contact__title {
  font-family: var(--tn-title-font, 'Inter Tight', sans-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #07235D;
  margin-bottom: 14px;
}

.b2b-contact__desc {
  font-size: 1.05rem;
  color: #5b6472;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.b2b-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.b2b-contact__card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}

.b2b-contact__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.b2b-contact__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06a700, #0d9b7a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.b2b-contact__card-icon i {
  font-size: 20px;
  color: #fff;
}

.b2b-contact__card-title {
  font-family: var(--tn-title-font, 'Inter Tight', sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #07235D;
  margin-bottom: 10px;
}

.b2b-contact__card-email {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #06a700;
  text-decoration: none;
  transition: color .2s;
}

.b2b-contact__card-email:hover {
  color: #048000;
  text-decoration: underline;
}

@media (max-width: 575px) {
  .b2b-contact__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
