/* ==========================================================
   contact.css — Three’s Company Yacht (Contact page only)
   Notes:
   - Contact-page styling first.
   - Anything that is global or questionable is moved to the
     bottom under "REVIEW / MOVE OUT" for your approval.
========================================================== */


/* ======================================
   CONTACT PAGE LAYOUT
====================================== */

.contact-main {
  max-width: 1100px;
}

/* White card wrapper used on contact page */
.page-content-card {
  border-radius: 14px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
  padding: 1rem;
}


/* ======================================
   HERO (Contact page)
====================================== */

.hero {
  min-height: 420px;
  padding: 92px 16px 70px;
  background-position: center 55%;
}

@media (max-width: 768px) {
  .hero {
    min-height: 320px;
    padding: 68px 14px 46px;
    background-position: center 45%;
  }
}

.hero-eyebrow {
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(2.1rem, 3.4vw, 3.0rem);
  line-height: 1.08;
  margin: 0.6rem 0 0.75rem;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.hero-subtitle {
  line-height: 1.55;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  opacity: 0.96;
}

.hero-meta {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  opacity: 0.92;
}

/* CTA button polish (contact hero button only) */
.hero-cta-primary {
  border-radius: 999px !important;
  padding: 0.7rem 1.9rem !important;
  font-weight: 700 !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}


/* ======================================
   INFO CARDS (Left column cards)
====================================== */

.info-card {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 1.15rem 1.15rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.info-card + .info-card {
  margin-top: 1rem;
}

.info-card p {
  margin-bottom: 0.55rem;
}

/* Better link contrast inside cards */
.info-card a,
.info-card a.small {
  color: #002244;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.info-card a:hover,
.info-card a:focus {
  color: #00152e;
  text-decoration-thickness: 2px;
}

/* Improve muted text within cards */
.info-card .small,
.info-card .text-muted {
  color: #555555;
}

/* Ensure headings in cards are dark even if .yacht-name-bold is styled white globally */
.page-content-wrapper .yacht-name-bold,
#contact-form-card .yacht-name-bold {
  color: #0b1220 !important;
  text-shadow: none !important;
  font-family: var(--font-display);
}


/* ======================================
   FEATURE LIST + TRUST ROW
====================================== */

.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.5rem 0;
  text-align: left;
}

.feature-list li {
  margin-bottom: 0.3rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

.trust-row span::before {
  content: "✔";
  color: #198754;
  font-weight: bold;
  margin-right: 0.25rem;
}


/* ======================================
   FAST RESPONSE CALLOUT
====================================== */

.contact-fast-response {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.contact-fast-response .label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  opacity: 0.8;
}

.contact-fast-response strong {
  font-size: 0.95rem;
}


/* ======================================
   CONTACT FORM — Scoped label styling
   (Avoid global collision with Bootstrap’s .form-label)
====================================== */

#contact-form-card .form-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  display: inline-block;
}


/* ======================================
   INSTAGRAM PREVIEW ROW
====================================== */

.ig-preview-row {
  display: flex;
  gap: 0.5rem;
}

.ig-preview-row a {
  display: inline-block;
}

.ig-preview-row img {
  display: block;
  max-width: 100px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}


/* ======================================
   EXPERIENCE SELECTOR (Trip tiles)
====================================== */

.experience-card .xp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 480px) {
  .experience-card .xp-grid {
    grid-template-columns: 1fr;
  }
}

.xp-title {
  display: block;
  font-weight: 800;
}

.xp-sub {
  display: block;
  font-size: 12px;
  opacity: 0.75;
  margin-top: 2px;
}

.next-steps {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.next-step {
  flex: 1 1 auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12.5px;
}

/* Stronger affordance + selected state */
.xp-tile {
  position: relative;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.xp-tile:hover {
  transform: translateY(-1px);
  border-color: rgba(203, 161, 53, 0.65);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.xp-tile.is-selected {
  border-color: rgba(203, 161, 53, 0.95);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.xp-tile.is-selected::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 12px;
  font-weight: 900;
  font-size: 14px;
  color: #0b0f1f;
  background: #CBA135;
  border-radius: 999px;
  padding: 2px 8px;
}

/* Selected label line (ONLY used if you add:
   <div class="xp-selected">Selected: <strong id="xpSelectedLabel">…</strong></div>
) */
.xp-selected {
  margin-top: 10px;
  font-size: 0.85rem;
  opacity: 0.85;
}
.xp-selected strong { opacity: 1; }





/*
======================================
POSSIBLY UNUSED ON CONTACT (VERIFY)
- This assumes the contact form include renders an element with
  id="contact-form-card" and a heading using .yacht-name-bold.
- If inc-contact-form.asp does NOT use .yacht-name-bold inside
  that card, this selector is dead and can be removed.

#contact-form-card .yacht-name-bold {
  color: #0b1220 !important;
  text-shadow: none !important;
  font-family: var(--font-display);
}
*/
