/* ============================================================
   contact.css — page-scoped styles for contact.html
   Only NEW styles live here. Shared classes come from styles.css.
   ============================================================ */

/* ---- Form fields ---- */
.field {
  width: 100%;
  font-family: 'Arimo', sans-serif;
  font-size: 15px;
  color: #1A1A1A;
  background: #fff;
  border: 1.5px solid #D1D1CD;
  border-radius: 10px;
  padding: 13px 15px;
  outline: none;
  transition: border-color .15s;
}
.field:focus { border-color: #DD7A1A; }
.field::placeholder { color: #8A8A85; }

/* ---- Enquiry chips ---- */
.chip {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s;
  background: #fff;
  color: #3A3A3A;
  border: 1.5px solid #D1D1CD;
}
.chip.is-selected {
  background: #1A1A1A;
  color: #fff;
  border: 1.5px solid #1A1A1A;
}

/* ---- Submit button (amber, full width) ---- */
.cf-submit {
  width: 100%;
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1A1A1A;
  background: #DD7A1A;
  border: 0;
  padding: 16px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(221,122,26,0.32);
  transition: background .15s;
}
.cf-submit:hover { background: #C56A12; }

/* ---- "Send another request" text button ---- */
.cf-again {
  margin-top: 28px;
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1A1A1A;
  background: none;
  border: 0;
  border-bottom: 3px solid #DD7A1A;
  padding: 0 0 3px;
  cursor: pointer;
}

/* ---- Banking details card (EFT) ---- */
.cf-bank__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.cf-bank__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #1A1A1A;
  color: #89BF4A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.cf-bank__request {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #1A1A1A;
  border-bottom: 3px solid #DD7A1A;
  padding-bottom: 2px;
}

/* ---- Contact detail card hover (replaces prototype .pp-lift) ---- */
.cf-detail {
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s cubic-bezier(.2,.7,.2,1);
}
a.cf-detail:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(26,26,26,.14);
}

/* ============================================================
   LAYOUT — base desktop grid for the form/details section
   These mirror the inline styles in contact.html so the layout
   is class-driven (the inline styles remain as a safe fallback).
   ============================================================ */
.cf-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.cf-card {
  background: #fff;
  border: 1px solid #E8E8E5;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(26,26,26,0.06);
}
.cf-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

/* ============================================================
   RESPONSIVE — stack the 2-column form/details grid + inner grids
   ============================================================ */
@media (max-width: 860px) {
  .cf-layout {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .cf-row2 {
    grid-template-columns: 1fr !important;
  }
  .cf-card {
    padding: 28px !important;
  }
}
