/* Page-specific styles for contact.html */

/* ── CONTACT HERO ── */
#contact-hero {
  padding-top: 68px;
  min-height: 60vh;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 5rem;
}
.contact-hero-inner {
  position: relative; z-index: 1;
  max-width: 640px;
}
.contact-hero-inner h1 { margin-bottom: 1.25rem; }
.contact-hero-sub {
  font-size: 1rem; color: var(--text-mid); font-weight: 300;
  line-height: 1.8; max-width: 520px; margin: 0 auto;
}
.contact-hero-accent {
  position: absolute;
  top: -30%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, var(--terracotta-pale) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* ── MAIN CONTACT LAYOUT ── */
#contact-main { background: var(--white); padding: 6rem 8%; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* ── CONTACT INFO (left) ── */
.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-block {
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.contact-block-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--terracotta-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-block-icon svg {
  width: 20px; height: 20px;
  stroke: var(--terracotta); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.contact-block h4 {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); font-weight: 500; margin-bottom: 0.35rem;
}
.contact-block p {
  font-size: 0.9rem; color: var(--text-mid); font-weight: 300;
  line-height: 1.6; margin-bottom: 0.6rem;
}
.contact-block a {
  font-size: 0.9rem; color: var(--terracotta-aa); font-weight: 400;
  text-decoration: none;
}
.contact-block a:hover { text-decoration: underline; }

.btn-book-call-sm {
  display: inline-block;
  font-size: 0.875rem; font-weight: 500;
  color: var(--terracotta-aa); text-decoration: none;
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-book-call-sm:hover { color: var(--warm-brown); border-color: var(--warm-brown); }

.contact-divider {
  width: 40px; height: 1px; background: var(--linen-dark);
  margin: 0.5rem 0;
}
.contact-note {
  font-family: var(--font-display); font-size: 0.95rem;
  color: var(--text-light); line-height: 1.6; font-weight: 300;
}

/* ── CONTACT FORM (right) ── */
.contact-form-wrap {
  background: var(--linen);
  border-radius: 24px;
  padding: 2.75rem;
  border: 1px solid var(--linen-dark);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 500;
  color: var(--warm-brown); margin-bottom: 0.4rem; letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--white); border: 1px solid var(--linen-dark);
  border-radius: 10px; padding: 0.75rem 1rem;
  font-family: var(--font-body); font-size: 0.875rem;
  color: var(--text-dark); outline: none;
  transition: border-color 0.2s; font-weight: 300;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239C8070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--terracotta-light); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
  width: 100%; background: var(--terracotta-aa); color: white;
  border: none; border-radius: 100px; padding: 0.9rem 2rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  cursor: pointer; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--terracotta); transform: translateY(-1px); }

.form-privacy {
  text-align: center; font-size: 0.75rem;
  color: var(--text-light); margin-top: 0.75rem; font-weight: 300;
}

/* Success state */
.form-success {
  display: none; text-align: center; padding: 3rem 2rem;
}
.form-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--terracotta-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success-icon svg {
  width: 26px; height: 26px;
  stroke: var(--terracotta); fill: none; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}
.form-success h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 300; color: var(--warm-brown); margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.9rem; color: var(--text-mid); font-weight: 300; }

/* ── BOOK A CALL SECTION ── */
.book-section {
  background: var(--warm-brown);
  padding: 6rem 8%;
  text-align: center;
}
.book-inner { max-width: 580px; margin: 0 auto; }
.book-section .tag { color: var(--terracotta-light); justify-content: center; }
.book-section .tag::before { background: var(--terracotta-light); }
.book-section h2 { color: var(--linen); margin-bottom: 1rem; }
.book-section h2 em { color: var(--terracotta-light); }
.book-section .section-sub { color: rgba(245,239,230,0.65); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  #contact-hero { min-height: auto; padding: 5rem 6% 4rem; }
}