/* CONTACT PAGE */

/* HERO */
.contact-hero {
  position: relative; height: 75vh; min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding-top: var(--nav-h);
}
.contact-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--purple);
  animation: zoomIn 10s ease forwards;
}
.contact-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,5,41,.6) 0%, rgba(15,5,41,.35) 50%, rgba(15,5,41,.8) 100%);
  z-index: 1;
}
.contact-hero-content {
  position: relative; z-index: 2;
  max-width: 700px; padding: 0 2rem;
}
.contact-hero-content h1 { color: #fff; margin-bottom: 1.2rem; }
.contact-hero-content p { color: rgba(255,255,255,.6); font-size: .95rem; font-weight: 300; line-height: 1.8; }

/* MAIN CONTACT SECTION */
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 100vh;
}

/* LEFT PANEL */
.contact-left {
  background: var(--purple);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-left::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(152,116,211,.12) 0%, transparent 60%);
  pointer-events: none;
}
.contact-left-inner {
  padding: 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
  width: 100%;
}
.contact-left h2 { color: #fff; }
.contact-left .eyebrow { color: rgba(255,255,255,.35); }
.contact-left > p,
.contact-left-inner > p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.85;
  font-weight: 300;
  max-width: 340px;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 320px;
}
.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.cd-item:last-child { border-bottom: none; padding-bottom: 0; }
.cd-icon { font-size: 1.4rem; margin-bottom: .2rem; }
.cd-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem; letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  display: block;
}
.cd-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: rgba(255,255,255,.8);
  font-weight: 300;
}

/* SOCIAL LINKS */
.contact-social { text-align: center; }
.contact-social .cd-label { margin-bottom: .8rem; }
.cs-links { display: flex; flex-direction: column; gap: .5rem; }
.cs-links a {
  font-size: .82rem; color: rgba(255,255,255,.4);
  transition: .3s; font-weight: 300;
}
.cs-links a:hover { color: var(--pink); }

/* RIGHT PANEL — FORM */
.contact-right { background: var(--cream); }
.contact-form-wrap { padding: 5rem 4.5rem; }

.form-header { margin-bottom: 3.5rem; }
.form-header .eyebrow { margin-bottom: .8rem; }
.form-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 400;
  line-height: 1.1; margin-bottom: 1rem;
}
.form-header p { font-size: .88rem; color: var(--mid); font-weight: 300; line-height: 1.7; }

/* FORM ELEMENTS */
.booking-form { display: flex; flex-direction: column; gap: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { display: flex; flex-direction: column; gap: .7rem; }

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-dark);
}

/* BIG inputs */
.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(15,5,41,.2);
  padding: 1rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color .3s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--lilac); }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(15,5,41,.25);
  font-style: italic;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input[type="date"] { cursor: pointer; }

/* BIG DROPDOWNS */
.custom-select { position: relative; }
.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(15,5,41,.2);
  padding: 1rem 2.5rem 1rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color .3s;
  width: 100%;
  cursor: pointer;
}
.custom-select select:focus { border-bottom-color: var(--lilac); }
.custom-select select option { color: var(--text); background: #fff; font-size: 1rem; }
.select-arrow {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--lilac); font-size: .9rem;
  pointer-events: none; font-style: normal;
}

/* SUBMIT */
.form-submit { display: flex; flex-direction: column; gap: 1rem; margin-top: .5rem; }
.btn-submit {
  background: var(--purple); color: #fff;
  border: 1.5px solid var(--purple);
  padding: 1.2rem 3.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  cursor: pointer; transition: .35s; align-self: flex-start;
}
.btn-submit:hover { background: transparent; color: var(--purple); }
.form-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--light);
  font-weight: 300; font-style: italic;
}

/* SUCCESS */
.form-success {
  display: none; text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(152,116,211,.25);
  background: rgba(152,116,211,.05);
}
.form-success span { color: var(--pink); font-size: 1.5rem; display: block; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.8rem; margin-bottom: .75rem; color: var(--purple); }
.form-success p { font-size: .88rem; color: var(--mid); font-weight: 300; }

/* RESPONSIVE */
@media(max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-left { padding: 4rem 2rem; }
  .contact-form-wrap { padding: 3.5rem 2.5rem; }
}
@media(max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-form-wrap { padding: 2.5rem 1.5rem; }
  .btn-submit { align-self: stretch; text-align: center; }
}
