/* =============================================
   CONTACT PAGE — premium redesign
   Hero reuses the site-wide .about-hero component. Everything below
   uses the .cp- prefix so it can't collide with any other page's CSS.
   Content is the group's real, verified contact information — no
   placeholder addresses, phone numbers, or emails.
   ============================================= */

.cp-section {
  padding: 90px 20px 110px;
  background: linear-gradient(180deg, #ffffff 0%, #faf6f1 100%);
}

.cp-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Intro ---- */
.cp-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.cp-pill {
  display: inline-block;
  padding: 7px 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 18px;
}
.cp-intro h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.18;
  margin-bottom: 14px;
}
.cp-intro h2 span { color: var(--maroon); }
.cp-intro p {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* ---- Office cards: address + phone + embedded map, each one unit ---- */
.cp-offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 90px;
}

.cp-office-card {
  background: #fff;
  border: 1px solid rgba(212, 148, 58, 0.14);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(40, 12, 26, 0.07);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.4s ease;
}
.cp-office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(139, 26, 74, 0.14);
}

.cp-office-info { padding: 30px 30px 26px; }

.cp-office-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--maroon);
  background: var(--maroon-tint);
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.cp-office-info h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.cp-office-addr {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 18px;
}
.cp-office-addr i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 18px;
  color: var(--gold-dark);
}

.cp-office-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cp-office-phones a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--accent-bg);
  border: 1px solid rgba(212, 148, 58, 0.16);
  padding: 8px 14px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.cp-office-phones a i { color: var(--gold-dark); font-size: 15px; }
.cp-office-phones a:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
}
.cp-office-phones a:hover i { color: #fff; }

.cp-office-map {
  border-top: 1px solid #f0f0f0;
}
.cp-office-map iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
  filter: grayscale(12%);
  transition: filter 0.4s ease;
}
.cp-office-card:hover .cp-office-map iframe {
  filter: grayscale(0%);
}

/* ---- Form section ---- */
.cp-form-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  background: #fff;
  border: 1px solid rgba(212, 148, 58, 0.14);
  border-radius: 28px;
  box-shadow: 0 20px 54px rgba(40, 12, 26, 0.08);
  padding: 54px;
}

.cp-form-side h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 14px;
}
.cp-form-side h2 span { color: var(--maroon); }
.cp-form-side > p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--charcoal-light);
  margin-bottom: 24px;
}

.cp-form-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cp-form-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--charcoal-light);
  line-height: 1.5;
}
.cp-form-points i {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-tint);
  color: var(--gold-dark);
  font-size: 15px;
}

/* Floating-label inputs */
.cp-form { display: flex; flex-direction: column; gap: 20px; }
.cp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cp-field {
  position: relative;
}
.cp-field--full { grid-column: 1 / -1; }
.cp-field input,
.cp-field textarea {
  width: 100%;
  padding: 18px 16px 8px;
  border-radius: 12px;
  border: 1px solid #e4e0da;
  background: var(--accent-bg);
  font-size: 14.5px;
  font-family: inherit;
  color: var(--charcoal);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.cp-field textarea { resize: none; min-height: 130px; }
.cp-field input:focus,
.cp-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 148, 58, 0.14);
}
.cp-field label {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 14.5px;
  color: #9a9a9a;
  pointer-events: none;
  transition: all 0.2s ease;
}
.cp-field input:focus + label,
.cp-field input:not(:placeholder-shown) + label,
.cp-field textarea:focus + label,
.cp-field textarea:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-dark);
}

.cp-submit {
  align-self: flex-start;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--maroon);
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
}
.cp-submit i { transition: transform 0.3s ease; }
.cp-submit:hover {
  background: var(--maroon-dark);
  box-shadow: 0 14px 30px rgba(139, 26, 74, 0.35);
}
.cp-submit:hover i { transform: translateX(5px); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .cp-offices { grid-template-columns: 1fr; }
  .cp-form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
}

@media (max-width: 640px) {
  .cp-section { padding: 60px 16px 70px; }
  .cp-intro h2 { font-size: 28px; }
  .cp-office-info { padding: 24px 22px 20px; }
  .cp-form-wrap { padding: 28px; border-radius: 22px; }
  .cp-form-row { grid-template-columns: 1fr; }
  .cp-form-side h2 { font-size: 25px; }
}
