/* ==========================================================================
   Shuvatara — Modern Airport Pickup Section
   Scoped under `sh-pickup`. Reuses the global `.sh-field` floating-label
   styles and `.sh-btn` button styles defined in modern-contact.css /
   modern-header-hero.css for consistency — do not duplicate those here.
   ========================================================================== */

.sh-pickup { padding: 30px 0 90px; background: #fbf9f5; }

.sh-pickup__card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sh-navy-2, #101d2e), var(--sh-navy, #0b1420));
  border-radius: 22px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 48px;
  align-items: center;
  box-shadow: 0 40px 80px -36px rgba(11, 20, 32, .5);
}

.sh-pickup__card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 106, .18) 0%, rgba(212, 175, 106, 0) 70%);
}

.sh-pickup__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sh-gold, #d4af6a);
  margin-bottom: 14px;
}

.sh-pickup__eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--sh-gold, #d4af6a);
}

.sh-pickup__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.3;
  color: #fff;
  margin-bottom: 12px;
}

.sh-pickup__lead {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .68);
  margin: 0;
}

.sh-pickup__form { position: relative; z-index: 1; }

.sh-pickup__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}

.sh-pickup__form .g-recaptcha { margin-top: 22px; transform-origin: left top; }

.sh-pickup__submit {
  width: 100%;
  margin-top: 22px;
  padding: 15px 28px;
  font-size: 15px;
}

@media (max-width: 991px) {
  .sh-pickup__card { grid-template-columns: 1fr; padding: 44px 32px; }
}

@media (max-width: 575px) {
  .sh-pickup__grid { grid-template-columns: 1fr; }
  .sh-pickup__card { padding: 36px 22px; }
}

@media (max-width: 380px) {
  /* Google's reCAPTCHA checkbox widget has a fixed ~304px layout width,
     which overflows the card on narrow phones — scale it down to fit. */
  .sh-pickup__form .g-recaptcha { transform: scale(0.87); }
}
