/* ==========================================================================
   Shuvatara — Modern Contact Section
   Scoped under `sh-contact` / `sh-field` so it never collides with the
   legacy theme CSS (the newsletter/airport-pickup form further down the
   page reuses the same `.form--control` / `.submit-btn` base classes).
   ========================================================================== */

.sh-contact {
  position: relative;
  padding: 110px 0;
  background: #fff;
}

.sh-contact__head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

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

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

.sh-contact__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.25;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 14px;
}

.sh-contact__lead {
  font-family: 'Lato', sans-serif;
  font-size: 15.5px;
  line-height: 1.85;
  color: #5c6470;
  margin: 0;
}

/* ---------------------------------- Grid ---------------------------------- */
.sh-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 40px;
  align-items: stretch;
}

/* ---------------------------------- Info ---------------------------------- */
.sh-contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sh-contact__map {
  flex: 1;
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(11, 20, 32, .3);
}

.sh-contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  display: block;
  filter: grayscale(.15);
}

.sh-contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sh-contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fbf9f5;
  border: 1px solid rgba(11, 20, 32, .06);
  border-radius: 14px;
  padding: 18px 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.sh-contact__detail:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -20px rgba(11, 20, 32, .3);
}

.sh-contact__detail-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 106, .14);
  color: var(--sh-gold, #d4af6a);
  font-size: 19px;
}

.sh-contact__detail h4 {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 4px;
}

.sh-contact__detail p {
  font-family: 'Lato', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: #7c8492;
  margin: 0;
}

/* ---------------------------------- Form ---------------------------------- */
.sh-contact__form-wrap {
  background: #fff;
  border: 1px solid rgba(11, 20, 32, .06);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 30px 60px -30px rgba(11, 20, 32, .18);
}

.sh-contact__form-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 6px;
}

.sh-contact__form-sub {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #7c8492;
  margin-bottom: 28px;
}

.sh-field {
  position: relative;
  margin-top: 22px;
}

.sh-field:first-of-type { margin-top: 0; }

.sh-field input,
.sh-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e7e3da;
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 14.5px;
  color: var(--sh-navy, #0b1420);
  background: #fbf9f5;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.sh-field textarea { min-height: 130px; resize: vertical; }

.sh-field input:focus,
.sh-field textarea:focus {
  outline: none;
  border-color: var(--sh-gold, #d4af6a);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 175, 106, .15);
}

.sh-field label {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 0 6px;
  font-family: 'Lato', sans-serif;
  font-size: 14.5px;
  color: #9aa1ab;
  background: transparent;
  transition: all .2s ease;
  pointer-events: none;
}

.sh-field input:focus ~ label,
.sh-field input:not(:placeholder-shown) ~ label,
.sh-field textarea:focus ~ label,
.sh-field textarea:not(:placeholder-shown) ~ label {
  top: -9px;
  left: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--sh-gold, #d4af6a);
  background: #fff;
  padding: 0 6px;
}

.sh-field__hint {
  display: block;
  margin-top: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: #9aa1ab;
}

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

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

/* --------------------------------- Responsive --------------------------------- */
@media (max-width: 991px) {
  .sh-contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .sh-contact__map { min-height: 280px; }
}

@media (max-width: 767px) {
  .sh-contact { padding: 80px 0; }
  .sh-contact__form-wrap { padding: 32px 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-contact__form .g-recaptcha { transform: scale(0.87); }
}
