.private-charters-section {
  background-color: transparent;
  /* padding-top: 4rem;
  padding-bottom: 4rem; */
}

@media (min-width: 992px) {
  .private-charters-right {
    align-items: flex-start;
    /* evita centrar verticalmente */
  }
}

.private-charters-inner {
  width: 100%;
  min-height: 60vh;
  align-items: stretch;
}

@media (min-width: 992px) {
  .private-charters-content.p-lg-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    padding-left: 2rem !important;
    padding-right: 1.25rem !important;
  }
}

.private-charters-left {
  flex: 1 1 50%;
  background-image: url('/assets/images/homepage/good-vibes.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.private-charters-right {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.private-charters-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/homepage/good-vibes.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
  /* visual effects */
  filter: blur(10px);
  -webkit-filter: blur(10px);
  transform: scale(1.06);
  will-change: filter, transform;
}

.private-charters-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(1, 58, 63);
  opacity: 0.60;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: normal;
}

.private-charters-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  /* padding-left: 2rem; */
  /* padding-right: 1.25rem; */
}

/* Typography */
.pc-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 34px;
  font-family: 'Amiri Quran', serif;
  /* font-weight: 700; */
  margin-top: 0;
  color: #fff;
}

.pc-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pc-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  margin-bottom: 0;
  text-align: justify;
}

.pc-buttons .btn {
  font-size: 11px;
}

/* Buttons */
.pc-buttons .pc-btn-call {
  background: #ffffff;
  color: #052;
  /* adjust to match design */
  border: none;
  padding: 0.6rem 1.2rem;
  width: auto;
}

.pc-buttons .pc-btn-call:hover,
.pc-buttons .pc-btn-call:focus {
  background: #f0f0f0;
  color: #052;
}

.pc-buttons .pc-btn-mail {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 0.6rem 1.2rem;
}

.pc-buttons .pc-btn-mail:hover,
.pc-buttons .pc-btn-mail:focus {
  background: rgba(255, 255, 255, 0.08);
}

/* Responsive: stack on small screens, left image on top */
@media (max-width: 991.98px) {
  .private-charters-inner {
    flex-direction: column;
  }

  .private-charters-left {
    width: 100%;
    min-height: 320px;
    max-height: 320px;
    background-size: 180%;
    background-position: center center;
  }

  .private-charters-right {
    padding: 1.25rem;
  }

  .gv-buttons {
    flex-direction: column;
  }
}

/* If you want the section background to be #F4F4F4 as before, set it on the section */
#location-info-section .location-info {
  background-color: #F4F4F4;
}

/* ...existing code... */