/* =============================================
   PathRoamer — Contact Page Styles
   ============================================= */

/* ── CONTACT HERO ── */
.contact-hero {
  padding: 10rem 5% 6rem;
  background: linear-gradient(135deg, var(--sand), var(--cream));
  text-align: center;
}
.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--midnight); margin-bottom: 1.2rem;
}
.contact-hero p {
  color: var(--text-mid); max-width: 480px;
  margin: 0 auto; line-height: 1.75; font-weight: 300;
}

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 5rem 5%;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--midnight); margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--text-mid); font-size: 0.95rem;
  line-height: 1.75; font-weight: 300; margin-bottom: 2.5rem;
}
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(196,113,74,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item h4 {
  font-size: 0.82rem; color: var(--text-light);
  margin-bottom: 0.2rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.contact-item p {
  font-size: 0.95rem; color: var(--midnight);
  font-weight: 500; margin-bottom: 0;
}
.contact-map {
  margin-top: 2rem; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(217,201,168,0.5);
  height: 200px;
}
.contact-map img { width: 100%; height: 100%; object-fit: cover; }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--warm-white);
  border-radius: 24px; padding: 3rem;
  border: 1px solid rgba(217,201,168,0.5);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--midnight); margin-bottom: 0.4rem;
}
.contact-form > p {
  font-size: 0.88rem; color: var(--text-light); margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.82rem; color: var(--text-mid);
  font-weight: 500; margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid rgba(217,201,168,0.6);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  background: var(--cream);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: white;
}
.form-group textarea { height: 110px; resize: none; }
.contact-form .btn-primary {
  width: 100%; font-size: 1rem;
  padding: 1rem; text-align: center;
}

/* ── SOCIAL STRIP ── */
.social-strip {
  height: 320px; overflow: hidden; position: relative;
}
.social-strip img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) saturate(1.1);
}
.social-strip-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.social-strip-content p {
  color: rgba(255,255,255,0.8); font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.social-strip-links { display: flex; gap: 1.5rem; }
.social-btn {
  color: white; font-size: 0.95rem; font-weight: 500;
  background: rgba(255,255,255,0.15);
  padding: 0.5rem 1.2rem; border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: background 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.25); color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-section { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
