/* ─── CONTACT HERO ─── */
.contact-hero {
  background: linear-gradient(180deg, var(--warm) 0%, var(--cream) 100%);
  padding: 160px 0 60px;
  text-align: center;
}
.contact-hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact-hero-h1 em {
  font-style: italic;
  color: var(--red);
}

/* ─── CONTACT SECTION ─── */
.contact-sec {
  background: var(--cream);
  padding: 0 0 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
}
@media(max-width:991px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Info Column */
.contact-info-card {
  background: var(--off-white);
  padding: 48px;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
@media(max-width:575px) {
  .contact-info-card { padding: 32px 24px; }
}
.info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-details-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-details-icon {
  width: 40px;
  height: 40px;
  background: var(--red-pale);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-details-val {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}
.contact-details-val strong {
  display: block;
  color: var(--charcoal);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Styled Map Container */
.map-container {
  border-radius: 6px;
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--warm);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.08) contrast(1.1); /* premium dark/grey maps */
}

/* Form Column */
.booking-form-card {
  background: var(--off-white);
  padding: 48px;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
@media(max-width:575px) {
  .booking-form-card { padding: 32px 24px; }
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.form-control-x {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s var(--ease);
  outline: none;
}
.form-control-x:focus {
  border-color: var(--red);
  background: var(--off-white);
  box-shadow: 0 0 0 3px rgba(184, 16, 42, 0.05);
}
select.form-control-x {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235A5A5A' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='even-rule' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px;
}

/* Form Success State */
.form-success-card {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success-card.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: successFadeIn 0.5s var(--ease) forwards;
}
.success-icon-box {
  width: 72px;
  height: 72px;
  background: var(--red-pale);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
  box-shadow: var(--red-glow);
}
.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.success-msg {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  max-width: 320px;
}

@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: none; }
}
